aboutsummaryrefslogtreecommitdiff
path: root/py/parse.h
AgeCommit message (Expand)Author
2022-04-14py/parse: Factor obj extract code to mp_parse_node_extract_const_object.Damien George
2022-03-16py/parse: Put const bytes objects in parse tree as const object.Damien George
2020-09-11py/parse: Pass in an mp_print_t to mp_parse_node_print.Damien George
2020-05-09py/parse: Make mp_parse_node_extract_list return size_t instead of int.Damien George
2020-02-28all: Reformat C and Python source code with tools/codeformat.py.Damien George
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
2017-07-18all: Unify header guard usage.Alexander Steffen
2016-11-15py/parse: Make mp_parse_node_new_leaf an inline function.Damien George
2016-11-15py/parse: Move function to check for const parse node to parse.[ch].Damien George
2016-01-07py/parse: Improve constant folding to operate on small and big ints.Damien George
2015-12-17py/parse: Include stddef.h for definition of size_t.Damien George
2015-12-17py/parse: Replace mp_int_t/mp_uint_t with size_t etc, where appropriate.Damien George
2015-11-29py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George
2015-10-02py: Allocate parse nodes in chunks to reduce fragmentation and RAM use.Damien George
2015-02-13py: Expose compile.c:list_get as mp_parse_node_extract_list.Damien George
2015-02-08py: Parse big-int/float/imag constants directly in parser.Damien George
2015-02-07py: Protect mp_parse and mp_compile with nlr push/pop block.Damien George
2015-01-01py: Move to guarded includes, everywhere in py/ core.Damien George
2014-12-27py: Move to guarded includes for compile.h and related headers.Paul Sokolovsky
2014-10-03py: Convert [u]int to mp_[u]int_t where appropriate.Damien George
2014-07-03parser: Convert (u)int to mp_(u)int_t.Damien George
2014-07-03Rename machine_(u)int_t to mp_(u)int_t.Damien George
2014-05-28py: Fix check of small-int overflow when parsing ints.Damien George
2014-05-25py: Don't automatically intern strings in parser.Damien George
2014-05-08Draft approach towards resolving https://github.com/micropython/micropython/i...Paul Sokolovsky
2014-05-03Add license header to (almost) all files.Damien George
2014-04-10py: Check explicitly for memory allocation failure in parser.Damien George
2014-02-22py: Put number parsing code together in parsenum.c.Damien George
2014-02-22parse: Refactor parse node encoding to support full range of small ints.Paul Sokolovsky
2014-02-21parse: Note that fact that parser's small ints are different than VM small int.Paul Sokolovsky
2014-02-15Implement proper exception type hierarchy.Damien George
2014-01-25Implement mp_parse_node_free; print properly repr(string).Damien George
2014-01-25Add parse_node_free_struct() and use it to free parse tree after compilation.Paul Sokolovsky
2014-01-19py: Add module/function/class name to exceptions.Damien George
2014-01-18Add source file name and line number to error messages.Damien George
2014-01-15Convert parse errors to exceptions.Damien George
2013-12-21Change object representation from 1 big union to individual structs.Damien
2013-10-18Implement REPL.Damien
2013-10-12Tidy up SMALL_INT optimisations and CPython compatibility.Damien
2013-10-04Initial commit.Damien