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