summaryrefslogtreecommitdiff
path: root/py/builtinimport.c
AgeCommit message (Expand)Author
2016-01-11py: Change type signature of builtin funs that take variable or kw args.Damien George
2015-12-18py: Add MICROPY_ENABLE_COMPILER and MICROPY_PY_BUILTINS_EVAL_EXEC opts.Damien George
2015-11-29py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George
2015-11-29py: Add MP_ROM_* macros and mp_rom_* types and use them.Damien George
2015-11-13py: Allow to import compiled bytecode files.Damien George
2015-06-29builtinimport: Fix running package submodule with -m.Paul Sokolovsky
2015-06-27builtinimport: Catch case when relative import happens without active package.Paul Sokolovsky
2015-06-06unix: Make micropython -m <module> work for frozen modules.Paul Sokolovsky
2015-04-16py: Add %q format support to mp_[v]printf, and use it.Damien George
2015-02-16builtinimport: Revamp&refactor handling of relative imports.Paul Sokolovsky
2015-02-16builtinimport: Improve debugging output.Paul Sokolovsky
2015-01-29py: Change vstr_null_terminate -> vstr_null_terminated_str, returns str.Damien George
2015-01-28py: Change vstr so that it doesn't null terminate buffer by default.Damien George
2015-01-21builtinimport: Make sure that qstr is used properly to load frozen modules.Paul Sokolovsky
2015-01-20py: Implement very simple frozen modules support.Paul Sokolovsky
2015-01-16py, unix: Allow to compile with -Wsign-compare.Damien George
2015-01-01py: Move to guarded includes, everywhere in py/ core.Damien George
2015-01-01py: Add basic framework for issuing compile/runtime warnings.Paul Sokolovsky
2014-12-09py: Allow builtins to be overridden.Damien George
2014-12-05py: Optimise lexer by exposing lexer type.Damien George
2014-11-06py: Use shorter, static error msgs when ERROR_REPORTING_TERSE enabled.Damien George
2014-11-05py: Deactivate more code without MICROPY_PY_SYSSven Wegener
2014-11-05py: Fix some macros defines; cleanup some includes.Damien George
2014-10-26unix: Implement -m option (execute module from stdlib).Paul Sokolovsky
2014-10-25py: Factor out mp_obj_is_package() function.Paul Sokolovsky
2014-10-25py: mp_builtin___import__(): Add const to arg type.Paul Sokolovsky
2014-10-12py: Add module weak link support.Damien George
2014-10-05py: Implement proper context save/restore for eval/exec; factor code.Damien George
2014-10-05py: Make compiler return a proper exception on SyntaxError.Damien George
2014-10-03py: Convert [u]int to mp_[u]int_t where appropriate.Damien George
2014-09-23py: Free non-interned strings in the parser when not needed.Damien George
2014-09-23stmhal: Initialise stack pointer correctly.Damien George
2014-08-30py: Change uint to mp_uint_t in runtime.h, stackctrl.h, binary.h.Damien George
2014-08-30py: Change all uint to mp_uint_t in obj.h.Damien George
2014-08-30py: Make tuple and list use mp_int_t/mp_uint_t.Damien George
2014-07-28py: Implement __file__ attribute for modules.Paul Sokolovsky
2014-06-11py: Make 3 functions static.Damien George
2014-06-07- FreeBSD provides alloca() via stdlib.h, in contrast to Linux and WindowsMarcus von Appen
2014-06-06Change comments (mainly URLs) to no longer specifically say Python 3.3Chris Angelico
2014-06-05objstr: Implement "%(key)s" % {} formatting for strings and dicts.Paul Sokolovsky
2014-05-25Change const byte* to const char* where sensible.Damien George
2014-05-24Rename configuration variables controling Python features.Damien George
2014-05-21Tidy up some configuration options.Damien George
2014-05-13py, unix: Add copyright for modules I worked closely on.Paul Sokolovsky
2014-05-10builtinimport: Fix broken namespace imports due to dup vstr_cut_tail_bytes().Paul Sokolovsky
2014-05-10builtinimport: Fix comment orphaned by one of previous commits.Paul Sokolovsky
2014-05-03Add license header to (almost) all files.Damien George
2014-05-03py: Use <alloca.h> for alloca()stijn
2014-05-02py, unix: Make "mpconfig.h" be first included, as other headers depend on it.Paul Sokolovsky
2014-04-22builtinimport: If there was error compiling imported module, raise exception.Paul Sokolovsky