1. f615d82 py/parse: Simplify handling of errors by raising them directly. by Damien George · 8 years ago
  2. 5255255 py: Create str/bytes objects in the parser, not the compiler. by Damien George · 8 years ago
  3. 74f4d2c py/parse: Allow parser/compiler consts to be bignums. by Damien George · 8 years ago
  4. 71019ae py/grammar: Group no-compile grammar rules together to shrink tables. by Damien George · 8 years ago
  5. 86e9423 py/parse: Refactor code to remove assert(0)'s. by Damien George · 9 years ago
  6. 9b52513 py/parse: Add code to fold logical constants in or/and/not operations. by Damien George · 9 years ago
  7. ed9c93f py/parse: Make mp_parse_node_new_leaf an inline function. by Damien George · 9 years ago
  8. b0cbfb0 py/parse: Move function to check for const parse node to parse.[ch]. by Damien George · 9 years ago
  9. f9b6b37 py: Fix wrong assumption that m_renew will not move if shrinking by Colin Hogben · 9 years ago
  10. 6d310a5 py/parse: Only replace constants that are standalone identifiers. by Damien George · 9 years ago
  11. b1533c4 py/parse: Treat constants that start with underscore as private. by Damien George · 9 years ago
  12. 3ff16ff py: Declare constant data as properly constant. by Damien George · 9 years ago
  13. e36ff98 py/parse: Add uerrno to list of modules to look for constants in. by Damien George · 9 years ago
  14. 0c1de1c py: Simplify "and" action within parser by making ident-rules explicit. by Damien George · 9 years ago
  15. eacbd7a py: Fix constant folding and inline-asm to work with new async grammar. by Damien George · 9 years ago
  16. 8d4d673 py/parse: When looking up consts, check they exist before checking type. by Damien George · 9 years ago
  17. d6c558c py/parse: Use m_renew_maybe to ensure that memory is shrunk in-place. by Damien George · 9 years ago
  18. efc971e py: unary_op enum type fix, and a cast to remove clang warning by Antonin ENFRUN · 10 years ago
  19. 7dbf74c py/parse: Include unistd.h for ssize_t definition. by Damien George · 10 years ago
  20. 22b2265 py/parse: Improve constant folding to operate on small and big ints. by Damien George · 10 years ago
  21. 93b3726 py/parse: Optimise away parse node that's just parenthesis around expr. by Damien George · 10 years ago
  22. dd5353a py: Add MICROPY_ENABLE_COMPILER and MICROPY_PY_BUILTINS_EVAL_EXEC opts. by Damien George · 10 years ago
  23. 16a6a47 py/parse: Replace mp_int_t/mp_uint_t with size_t etc, where appropriate. by Damien George · 10 years ago
  24. b8cfb0d py: Add support for 64-bit NaN-boxing object model, on 32-bit machine. by Damien George · 10 years ago
  25. 999cedb py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. by Damien George · 10 years ago
  26. cbf7674 py: Add MP_ROM_* macros and mp_rom_* types and use them. by Damien George · 10 years ago
  27. 2c83894 py: Implement default and star args for lambdas. by Damien George · 10 years ago
  28. fdfcee7 py/parse: Make parser error handling cleaner, less spaghetti-like. by Damien George · 10 years ago
  29. 64f2b21 py: Move constant folding from compiler to parser. by Damien George · 10 years ago
  30. 366239b py/parse: Factor logic when creating parse node from and-rule. by Damien George · 10 years ago
  31. 58e0f4a py: Allocate parse nodes in chunks to reduce fragmentation and RAM use. by Damien George · 10 years ago
  32. 65dc960 unix-cpy: Remove unix-cpy. It's no longer needed. by Damien George · 10 years ago
  33. 96f0dd3 py/parse: Fix handling of empty input so it raises an exception. by Damien George · 10 years ago
  34. fa7c61d py/parse: De-duplicate and simplify code for parser "or" rule. by Damien George · 10 years ago
  35. ade9a05 py: Improve allocation policy of qstr data. by Damien George · 10 years ago
  36. 4735c45 py: Clean up some bits and pieces in parser, grammar. by Damien George · 10 years ago
  37. 5d323de py: Update parse.c&mpconfig.h to reflect rename of mp_lexer_show_token. by nhtshot · 10 years ago
  38. dfe944c py: Expose compile.c:list_get as mp_parse_node_extract_list. by Damien George · 10 years ago
  39. f804833 py: Initialise variables in mp_parse correctly, to satisfy gcc warning. by Damien George · 10 years ago
  40. 7d414a1 py: Parse big-int/float/imag constants directly in parser. by Damien George · 10 years ago
  41. 0bfc763 py: Protect mp_parse and mp_compile with nlr push/pop block. by Damien George · 10 years ago
  42. 5c670ac py: Be more machine-portable with size of bit fields. by Damien George · 11 years ago
  43. 50912e7 py, unix, stmhal: Allow to compile with -Wshadow. by Damien George · 11 years ago
  44. 963a5a3 py, unix: Allow to compile with -Wsign-compare. by Damien George · 11 years ago
  45. d2d64f0 py: Add "default" to switches to allow better code flow analysis. by Damien George · 11 years ago
  46. 4c81ba8 py: Never intern data of large string/bytes object; add relevant tests. by Damien George · 11 years ago
  47. 51dfcb4 py: Move to guarded includes, everywhere in py/ core. by Damien George · 11 years ago
  48. 6efa66f py: Remove unnecessary RULE_none and PN_none from parser. by Damien George · 11 years ago
  49. b47ea4e py: Add blank and ident flags to grammar rules to simplify parser. by Damien George · 11 years ago
  50. 2870d85 py: Save a few code bytes in parser; make vars local where possible. by Damien George · 11 years ago
  51. a4c52c5 py: Optimise lexer by exposing lexer type. by Damien George · 11 years ago
  52. e7bb044 py: Properly free string parse-node; add assertion to gc_free. by Damien George · 11 years ago
  53. 52b5d76 py: Free non-interned strings in the parser when not needed. by Damien George · 11 years ago
  54. 2ac4af6 py: Allow viper to have type annotations. by Damien George · 11 years ago
  55. 3816182 parser: Convert (u)int to mp_(u)int_t. by Damien George · 11 years ago
  56. 40f3c02 Rename machine_(u)int_t to mp_(u)int_t. by Damien George · 11 years ago
  57. 59c675a py: Include mpconfig.h before all other includes. by Paul Sokolovsky · 11 years ago
  58. d1e355e py: Fix check of small-int overflow when parsing ints. by Damien George · 11 years ago
  59. 2617eeb Change const byte* to const char* where sensible. by Damien George · 11 years ago
  60. 5042bce py: Don't automatically intern strings in parser. by Damien George · 11 years ago
  61. 3aaabd1 Merge branch 'keep-strings-uninterned' of github.com:pfalcon/micropython into pfalcon-keep-strings-uninterned by Damien George · 11 years ago
  62. 58ebde4 Tidy up some configuration options. by Damien George · 11 years ago
  63. 1b82e9a py: Improve handling of memory error in parser. by Damien George · 11 years ago
  64. 9e76b11 Draft approach towards resolving https://github.com/micropython/micropython/issues/560#issuecomment-42213955 by Paul Sokolovsky · 11 years ago
  65. 93afa23 py, parser: Add commented-out code to discard doc strings. by Damien George · 11 years ago
  66. 66e18f0 py: Turn down amount of RAM parser and compiler use. by Damien George · 11 years ago
  67. 04b9147 Add license header to (almost) all files. by Damien George · 11 years ago
  68. 58ba4c3 py: Check explicitly for memory allocation failure in parser. by Damien George · 11 years ago
  69. efe3422 py: Clean up includes. by xbe · 11 years ago
  70. 06201ff py: Implement bit-shift and not operations for mpz. by Damien George · 11 years ago
  71. 56e5ef2 parse: Refactor parse node encoding to support full range of small ints. by Paul Sokolovsky · 11 years ago
  72. bbf0e2f parse: Note that fact that parser's small ints are different than VM small int. by Paul Sokolovsky · 11 years ago
  73. c596612 Implement proper exception type hierarchy. by Damien George · 11 years ago
  74. 520e2f5 Replace global "static" -> "STATIC", to allow "analysis builds". Part 2. by Paul Sokolovsky · 11 years ago
  75. 08d0755 py: Fix bug with LOAD_METHOD; fix int->machine_int_t for small int. by Damien George · 12 years ago
  76. b829b5c Implement mp_parse_node_free; print properly repr(string). by Damien George · 12 years ago
  77. aee2ba7 Add parse_node_free_struct() and use it to free parse tree after compilation. by Paul Sokolovsky · 12 years ago
  78. 00208ce py: Change macro var args in parser to be C99 compliant. by Damien George · 12 years ago
  79. 55baff4 Revamp qstrs: they now include length and hash. by Damien George · 12 years ago
  80. cbd2f74 py: Add module/function/class name to exceptions. by Damien George · 12 years ago
  81. 0833500 Add source file name and line number to error messages. by Damien George · 12 years ago
  82. d02c6d8 Implement eval. by Damien George · 12 years ago
  83. 9528cd6 Convert parse errors to exceptions. by Damien George · 12 years ago
  84. 80f60e1 Parse long Python ints properly. by Paul Sokolovsky · 12 years ago
  85. 69a818d py: Improve memory management for parser; add lexer error for bad line cont. by Damien George · 12 years ago
  86. 8cc96a3 Put unicode functions in unicode.c, and tidy their names. by Damien George · 12 years ago
  87. 732407f Change memory allocation API to require size for free and realloc. by Damien · 12 years ago
  88. dd12d13 Parse upper-case hex numbers correctly. by Damien · 12 years ago
  89. d99b052 Change object representation from 1 big union to individual structs. by Damien · 12 years ago
  90. 7410e44 Add basic complex number support. by Damien · 12 years ago
  91. df4b4f3 Make grammar rules const so the go in .text section. by Damien · 12 years ago
  92. 5ac1b2e Implement REPL. by Damien · 12 years ago
  93. 0efb3a1 Tidy up SMALL_INT optimisations and CPython compatibility. by Damien · 12 years ago
  94. c025ebb Separate out mpy core and unix version. by Damien · 12 years ago
  95. 91d387d Improve indent/dedent error checking and reporting. by Damien · 12 years ago
  96. b14de21 Optimise typedargslist_name to not create a node if just an id. by Damien · 12 years ago
  97. 5fa5ae4 Make range of small int 24 bits. by Damien · 12 years ago
  98. 826005c Add support for inline thumb assembly. by Damien · 12 years ago
  99. 429d719 Initial commit. by Damien · 12 years ago