Skip to content
Snippets Groups Projects
  1. Oct 01, 2015
  2. Apr 25, 2015
  3. Apr 22, 2015
  4. Apr 09, 2015
  5. Mar 12, 2015
  6. Mar 02, 2015
  7. Jan 27, 2015
  8. Jan 24, 2015
  9. Jan 20, 2015
  10. Jan 16, 2015
  11. Jan 09, 2015
  12. Jan 02, 2015
  13. Jan 01, 2015
  14. Dec 31, 2014
  15. Oct 30, 2014
    • stijn's avatar
      mpz: Fix 64bit msvc build · 0e557fac
      stijn authored
      msvc does not treat 1L a 64bit integer hence all occurences of shifting it left or right
      result in undefined behaviour since the maximum allowed shift count for 32bit ints is 31.
      Forcing the correct type explicitely, stored in MPZ_LONG_1, solves this.
      0e557fac
  16. Oct 03, 2014
  17. Sep 10, 2014
  18. Sep 06, 2014
    • Damien George's avatar
      py: Make mpz able to use 16 bits per digit; and 32 on 64-bit arch. · 9a21d2e0
      Damien George authored
      Previously, mpz was restricted to using at most 15 bits in each digit,
      where a digit was a uint16_t.
      
      With this patch, mpz can use all 16 bits in the uint16_t (improvement
      to mpn_div was required).  This gives small inprovements in speed and
      RAM usage.  It also yields savings in ROM code size because all of the
      digit masking operations become no-ops.
      
      Also, mpz can now use a uint32_t as the digit type, and hence use 32
      bits per digit.  This will give decent improvements in mpz speed on
      64-bit machines.
      
      Test for big integer division added.
      9a21d2e0
  19. Sep 05, 2014
  20. Aug 29, 2014
  21. Aug 07, 2014
  22. Jul 31, 2014
    • Damien George's avatar
      py: Improve handling of long-int overflow. · c9aa58e6
      Damien George authored
      This removes mpz_as_int, since that was a terrible function (it
      implemented saturating conversion).
      
      Use mpz_as_int_checked and mpz_as_uint_checked.  These now work
      correctly (they previously had wrong overflow checking, eg
      print(chr(10000000000000)) on 32-bit machine would incorrectly convert
      this large number to a small int).
      c9aa58e6
  23. Jul 24, 2014
  24. Jul 03, 2014
  25. Jun 21, 2014
  26. Jun 01, 2014
    • Damien George's avatar
      Rename bultins config variables to MICROPY_PY_BUILTINS_*. · fb510b3b
      Damien George authored
      This renames:
      MICROPY_PY_FROZENSET -> MICROPY_PY_BUILTINS_FROZENSET
      MICROPY_PY_PROPERTY -> MICROPY_PY_BUILTINS_PROPERTY
      MICROPY_PY_SLICE -> MICROPY_PY_BUILTINS_SLICE
      MICROPY_ENABLE_FLOAT -> MICROPY_PY_BUILTINS_FLOAT
      
      See issue #35 for discussion.
      fb510b3b
  27. May 29, 2014
  28. May 13, 2014
  29. May 12, 2014
  30. May 08, 2014
    • stijn's avatar
      Windows MSVC port · 01d6be4d
      stijn authored
      Extend the windows port so it compiles with the toolchain from Visual Studio 2013
      01d6be4d
  31. May 03, 2014
    • Damien George's avatar
      Add license header to (almost) all files. · 04b9147e
      Damien George authored
      Blanket wide to all .c and .h files.  Some files originating from ST are
      difficult to deal with (license wise) so it was left out of those.
      
      Also merged modpyb.h, modos.h, modstm.h and modtime.h in stmhal/.
      04b9147e
  32. Apr 08, 2014
  33. Apr 07, 2014
  34. Apr 03, 2014
  35. Mar 22, 2014
  36. Mar 12, 2014
Loading