summaryrefslogtreecommitdiff
path: root/py/lexer.c
AgeCommit message (Expand)Author
2015-09-07py/lexer: Properly classify floats that look like hex numbers.Damien George
2015-09-07py/lexer: Raise SyntaxError when unicode char point out of range.Damien George
2015-09-07py/lexer: Raise NotImplError for unicode name escape, instead of assert.Damien George
2015-07-23py/lexer: Raise SyntaxError when str hex escape sequence is malformed.Damien George
2015-06-22py: Cast argument for printf to int, to be compatible with more ports.Damien George
2015-06-09py: Support unicode (utf-8 encoded) identifiers in Python source.Damien George
2015-05-20extmod: Add ubinascii.unhexlifyDave Hylands
2015-03-19py: Allow to compile with extra warnings (sign-compare, unused-param).Damien George
2015-02-08py: Parse big-int/float/imag constants directly in parser.Damien George
2015-01-30py: Convert CR to LF and CR LF to LF in lexer.Damien George
2015-01-28py: Be more precise about unicode type and disabled unicode behaviour.Damien George
2015-01-16py, unix: Allow to compile with -Wsign-compare.Damien George
2015-01-07py: Put all global state together in state structures.Damien George
2015-01-01py: Move to guarded includes, everywhere in py/ core.Damien George
2014-12-05py: Fix printing of size_t entity; fix qemu-arm for changes to lexer.Damien George
2014-12-05py: Optimise lexer by exposing lexer type.Damien George
2014-10-09py: Add further checks for failed malloc in lexer init functions.Damien George
2014-07-30py: Change lexer stream API to return bytes not chars.Damien George
2014-07-03lexer: Convert type (u)int to mp_(u)int_t.Damien George
2014-06-27lexer, vstr: Add unicode support.Chris Angelico
2014-06-21py: Include mpconfig.h before all other includes.Paul Sokolovsky
2014-06-19Prefix ARRAY_SIZE with micropython prefix MP_Emmanuel Blot
2014-06-14unicode: String API is const byte*.Paul Sokolovsky
2014-06-03py: Instead of having "debug on" var, have "optimization level" var.Paul Sokolovsky
2014-06-02lexer: Add another comment for somewhat obscure way __debug__ is handled.Paul Sokolovsky
2014-05-21Tidy up some configuration options.Damien George
2014-05-12py: Add support for __debug__ constant.Damien George
2014-05-10py, lexer: Add allocation policy config; return NULL if can't allocate.Damien George
2014-05-03Add license header to (almost) all files.Damien George
2014-04-10py: Fix lexer so it doesn't allow ! and ..Damien George
2014-04-10py, lexer: Fix parsing of raw strings (allow escaping of quote).Damien George
2014-03-17py: Clean up includes.xbe
2014-03-15Add vstr_ins and vstr_cut_out; improve stmhal readline.Damien George
2014-02-15Implement proper exception type hierarchy.Damien George
2014-02-12Replace global "static" -> "STATIC", to allow "analysis builds". Part 2.Paul Sokolovsky
2014-01-25Implement mp_parse_node_free; print properly repr(string).Damien George
2014-01-23mp_lexer_free(): Free lex->indent_level array.Paul Sokolovsky
2014-01-22Fix 1 warning and 1 bug.Damien George
2014-01-22Implement octal and hex escapes in strings.Paul Sokolovsky
2014-01-21Revamp qstrs: they now include length and hash.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
2014-01-13Add "buffer management" and "shrink" API calls to vstr.Paul Sokolovsky
2014-01-12py: Improve memory management for parser; add lexer error for bad line cont.Damien George
2014-01-04Add ellipsis object.Damien George
2013-12-30Put unicode functions in unicode.c, and tidy their names.Damien George
2013-12-29Change memory allocation API to require size for free and realloc.Damien
2013-12-21Change object representation from 1 big union to individual structs.Damien
2013-10-22Improve REPL compount statement detection.Damien
2013-10-22gc: reserve first block; lexer: free vstr.Damien