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