1. 6e0b6d0 py: Fix float to int conversion for large exponents. by David Steinberg · 11 years ago
  2. fbfd355 msvc: Fix unresolved mp_arg_error_terse_mismatch since 7f23384 by stijn · 11 years ago
  3. fd40a9c py: Make GC's STACK_SIZE definition a proper MICROPY_ config variable. by Damien George · 11 years ago
  4. 872a829 py: Fix windows external name error for nlr_top. by Damien George · 11 years ago
  5. 8a23477 py: Move global variable nlr_top to one place, in a .c file. by Damien George · 11 years ago
  6. 51dfcb4 py: Move to guarded includes, everywhere in py/ core. by Damien George · 11 years ago
  7. db1ac36 emitnative: Disable warning in delete_fast for now (breaks test). by Paul Sokolovsky · 11 years ago
  8. 8a8c1fc py: Add basic framework for issuing compile/runtime warnings. by Paul Sokolovsky · 11 years ago
  9. ebde3c6 py: Add guarded includes for asm-based headers. by Damien George · 11 years ago
  10. 84e0cf0 py: Change namedtuple error messages to reduce code size. by Damien George · 11 years ago
  11. 7f23384 py: Make terse_arg_mismatch a global function and use it elsewhere. by Damien George · 11 years ago
  12. 276159e objnamedtuple: Make sure to initialize type structure completely. by Paul Sokolovsky · 11 years ago
  13. 021dc44 py: Allow keyword arguments for namedtuple by stijn · 11 years ago
  14. 1234014 py: Use sequence of strings for named tuple initialization by stijn · 11 years ago
  15. e0ac194 py: Fix rshift and not of zero/one edge cases in mpz. by Damien George · 11 years ago
  16. 2c75665 objstr: Fix %d-formatting of floats. by Paul Sokolovsky · 11 years ago
  17. 5f68094 py: mp_obj_new_int_from_float() supported only for MICROPY_PY_BUILTINS_FLOAT. by Paul Sokolovsky · 11 years ago
  18. f79cd6a py: Implement mp_obj_new_int_from_float() for MICROPY_LONGINT_IMPL_NONE. by Paul Sokolovsky · 11 years ago
  19. 12033df py: Partially fix float to int conversion. by Paul Sokolovsky · 11 years ago
  20. 9ddbe29 py: Add include guards to mpconfig,misc,qstr,obj,runtime,parsehelper. by Damien George · 11 years ago
  21. f89d659 py: In VM, for selective ip saving, store 1 byte past last opcode. by Damien George · 11 years ago
  22. 23f1b5f py: Add note about -fno-crossjumping when compiling vm.c. by Paul Sokolovsky · 11 years ago
  23. 361909e py: Add MP_LIKELY(), MP_UNLIKELY() macros to help branch prediction. by Paul Sokolovsky · 11 years ago v1.3.8
  24. 1ee1785 showbc: Print operation mnemonic in BINARY_OP. by Paul Sokolovsky · 11 years ago
  25. df10346 showbc: Make code object start pointer semi-public. by Paul Sokolovsky · 11 years ago
  26. 7495750 vm: Record exception ip only for instructions where exceptions may happen. by Paul Sokolovsky · 11 years ago
  27. 83204f3 py: Allow to properly disable builtin slice operation. by Damien George · 11 years ago
  28. e37dcaa py: Allow to properly disable builtin "set" object. by Damien George · 11 years ago
  29. 8ab6f90 py: Move to guarded includes for compile.h and related headers. by Paul Sokolovsky · 11 years ago
  30. 343266e showbc: Refactor to allow inline instruction printing. by Paul Sokolovsky · 11 years ago
  31. c55a4d8 py: Make bytes objs work with more str methods; add tests. by Damien George · 11 years ago
  32. 74eb44c py: Reduce size of VM exception stack element by 1 machine word. by Damien George · 11 years ago
  33. 81836c2 py: Use str_to_int function in more places to reduce code size. by Damien George · 11 years ago
  34. 01039b5 py: Remove last uses of printf from compile; use proper SyntaxError. by Damien George · 11 years ago
  35. 584ba67 py: Move global/nonlocal decl code to compiler for proper SyntaxError. by Damien George · 11 years ago
  36. b063b9b py: Fix iteration over map in 2 places. by Damien George · 11 years ago
  37. 6efa66f py: Remove unnecessary RULE_none and PN_none from parser. by Damien George · 11 years ago
  38. b47ea4e py: Add blank and ident flags to grammar rules to simplify parser. by Damien George · 11 years ago
  39. 2870d85 py: Save a few code bytes in parser; make vars local where possible. by Damien George · 11 years ago
  40. 2a3e2b9 py: Add execfile function (from Python 2); enable in stmhal port. by Damien George · 11 years ago
  41. c0bc3bd asmarm: Fix bug with encoding small negative ints using MVN instruction. by Paul Sokolovsky · 11 years ago
  42. e181c0d py: Fix optimised for-loop compiler so it follows proper semantics. by Damien George · 11 years ago
  43. 7764f16 py: Fix label printing in showbc; print sp in vm trace. by Damien George · 11 years ago
  44. c33ce60 py: Fix a semantic issue with range optimisation. by Damien George · 11 years ago
  45. 5318cc0 py: Tidy up a few function declarations. by Damien George · 11 years ago
  46. 7eb2317 py: Remove static from definition of pfenv_printf. by Damien George · 11 years ago
  47. 969a6b3 py: Make functions static where appropriate. by Damien George · 11 years ago
  48. b4fe6e2 py: Fix function type: () -> (void). by Damien George · 11 years ago
  49. 78d702c py: Allow builtins to be overridden. by Damien George · 11 years ago
  50. 46c3ab2 modsys: Add sys.print_exception(exc, file=sys.stdout) function. by Paul Sokolovsky · 11 years ago
  51. be6d8be py: Rename mp_obj_int_get to mp_obj_int_get_truncated; fix struct.pack. by Damien George · 11 years ago
  52. 451a087 py: Fix printing of size_t entity; fix qemu-arm for changes to lexer. by Damien George · 11 years ago
  53. a4c52c5 py: Optimise lexer by exposing lexer type. by Damien George · 11 years ago
  54. 32ef3a3 py: Allow bytes/bytearray/array to be init'd by buffer protocol objects. by Damien George · 11 years ago
  55. cd97a43 py, vm: Make unum a local variable for each opcode that uses it. by Damien George · 11 years ago
  56. 6e8ff9c modmicropython: Move mem_info() and qstr_info() functions from unix port. by Paul Sokolovsky · 11 years ago
  57. c7ca01a py: Generalise and reduce code size of array +, += and .extend(). by Damien George · 11 years ago
  58. b2e7311 py: Implement +, += and .extend for bytearray and array objs. by Damien George · 11 years ago
  59. 3b603f2 Use MP_DEFINE_CONST_DICT macro to define module dicts. by Damien George · 11 years ago
  60. bfdc205 modubinascii: Add, with hexlify() implementation. by Paul Sokolovsky · 11 years ago
  61. 2399aa0 py: Add NLR support for xtensa CPU. by Damien George · 11 years ago
  62. df732bb pfenv_printf: Properly implement %p format specifier. by Paul Sokolovsky · 11 years ago
  63. 1eca328 builtin: Reimplement __repl_print__() in terms of print(). by Paul Sokolovsky · 11 years ago
  64. e5dbe1e map: Add empty fixed map. by Paul Sokolovsky · 11 years ago
  65. 6f5eb84 py: #if guard str_make_new when not needed. by Damien George · 11 years ago
  66. f4b19c8 moduhashlib: Initial module skeleton. by Paul Sokolovsky · 11 years ago
  67. c9f8f65 py: Add support for float/double arrays in array module. by Damien George · 11 years ago
  68. 5694cc5 py: Make stream seek correctly check for ioctl fn; add seek for textio. by Damien George · 11 years ago
  69. 838eb1f stream: Implement seek operation support via ioctl, wrapped in generic method. by Paul Sokolovsky · 11 years ago
  70. f4a6a57 stream: Convert .ioctl() to take fixed number of args. by Paul Sokolovsky · 11 years ago
  71. e00eeaf py: Use __hash__ method if a type defines it by stijn · 11 years ago
  72. b98c162 py: Fix order-only dependencies in mkrules.mk and py.mk. by Sven Wegener · 11 years ago
  73. 1e9a92f py: Use shorter, static error msgs when ERROR_REPORTING_TERSE enabled. by Damien George · 11 years ago
  74. b6b34cd py: Remove obsolute function declaration. by Damien George · 11 years ago
  75. bfb18a7 py: Add order-only dependency for py-version.h by Sven Wegener · 11 years ago
  76. 238ab50 py: Deactivate more code without MICROPY_PY_SYS by Sven Wegener · 11 years ago
  77. 7860c2a py: Fix some macros defines; cleanup some includes. by Damien George · 11 years ago
  78. be8e99c py: Allow bytes object as argument to some str methods. by Damien George · 11 years ago
  79. a65c03c py: Allow +, in, and compare ops between bytes and bytearray/array. by Damien George · 11 years ago
  80. 346aacf unix: fast: Set initial module dict size big to have high pystone score. by Paul Sokolovsky · 11 years ago
  81. ff319df py: Explicitly set uninitialised struct member to false. by Damien George · 11 years ago
  82. 0344fa1 py: Fix builtin callable so it checks user-defined instances correctly. by Damien George · 11 years ago
  83. 039887a py: Fix bug with right-shifting small ints by large amounts. by Paul Sokolovsky · 11 years ago
  84. 109c1de py: Make gc.enable/disable just control auto-GC; alloc is still allowed. by Damien George · 11 years ago
  85. 1559a97 py: Add builtin round function. by Damien George · 11 years ago
  86. 0e557fa mpz: Fix 64bit msvc build by stijn · 11 years ago
  87. e62a0fe objstr: Allow to convert any buffer proto object to str. by Paul Sokolovsky · 11 years ago
  88. 31619cc py: mp_obj_str_get_str(): Work with bytes too. by Paul Sokolovsky · 11 years ago
  89. b1422de py: Allow to override port config file and thus have >1 configs per port. by Paul Sokolovsky · 11 years ago
  90. 49c47da Fix errors after enabling -Wpointer-arith by stijn · 11 years ago
  91. 429e3f0 unix: Make -v dump memory info at exit. by Paul Sokolovsky · 11 years ago
  92. e503512 unix: Implement -m option (execute module from stdlib). by Paul Sokolovsky · 11 years ago
  93. de3c806 py: Fix memoryview referencing so it retains ptr to original buffer. by Damien George · 11 years ago
  94. b0b0012 py: Fix VM dispatch following a pending exception check. by Damien George · 11 years ago
  95. 124df6f py: Add mp_pending_exception global variable, for VM soft interrupt. by Damien George · 11 years ago
  96. c9fc620 py: Implement compile builtin, enabled only on unix port. by Damien George · 11 years ago
  97. e5a3759 py: Factor out mp_obj_is_package() function. by Paul Sokolovsky · 11 years ago
  98. 8becca7 py: mp_builtin___import__(): Add const to arg type. by Paul Sokolovsky · 11 years ago
  99. 8456cc0 py: Compress load-int, load-fast, store-fast, unop, binop bytecodes. by Damien George · 11 years ago
  100. 1084b0f py: Store bytecode arg names in bytecode (were in own array). by Damien George · 11 years ago