aboutsummaryrefslogtreecommitdiff
path: root/py/builtinimport.c
AgeCommit message (Expand)Author
2022-03-28py/builtinimport: Alias sys to usys if import weak links aren't enabled.Damien George
2022-02-24py: Rework bytecode and .mpy file format to be mostly static data.Damien George
2021-12-18py: Only search frozen modules when '.frozen' is found in sys.path.Jim Mussared
2021-12-01py/builtinimport: Refactor module importing.Jim Mussared
2021-09-24py/builtinimport: Forward all debug printing to MICROPY_DEBUG_PRINTER.stijn
2021-07-31py/builtinimport: Fix condition for including do_execute_raw_code().David Lechner
2021-05-30py/builtinimport: Change relative import's ValueError to ImportError.Damien George
2021-04-27py: Add option to compile without any error messages at all.Damien George
2020-04-23all: Format code to add space after C++-style comment start.stijn
2020-04-13all: Clean up error strings to use lowercase and change cannot to can't.Damien George
2020-04-05all: Use MP_ERROR_TEXT for all error messages.Jim Mussared
2020-04-05py: Use preprocessor to detect error reporting level (terse/detailed).Jim Mussared
2020-02-28all: Reformat C and Python source code with tools/codeformat.py.Damien George
2020-02-28py/builtinimport: Adjust if-block order in find_file to clean up #if's.Damien George
2020-02-13py: Add mp_raise_msg_varg helper and use it where appropriate.Damien George
2019-11-26py/builtinimport: Raise exception on empty module name.Léa Saviot
2019-10-22py: Automatically provide weak links from "foo" to "ufoo" module name.Damien George
2019-07-31py/builtinimport: Populate __file__ when importing frozen or mpy files.Paul m. p. P
2019-01-27py: Remove calls to file reader functions when these are disabled.Sean Burton
2018-02-20py/builtinimport: Add compile-time option to disable external imports.Damien George
2018-02-20py/objmodule: Factor common code for calling __init__ on builtin module.Damien George
2017-12-13py/builtinimport: Call __init__ for modules imported via a weak link.Damien George
2017-12-11py: Convert all uses of alloca() to use new scoped allocation API.Damien George
2017-11-16py/objstr: Remove "make_qstr_if_not_already" arg from mp_obj_new_str.Damien George
2017-10-04all: Remove inclusion of internal py header files.Damien George
2017-08-15py: Add verbose debug compile-time flag MICROPY_DEBUG_VERBOSE.Stefan Naumann
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
2017-07-07py,extmod: Some casts and minor refactors to quiet compiler warnings.Tom Collins
2017-07-04py: Change mp_uint_t to size_t in builtins code.Damien George
2017-06-28py/builtinimport: Remove unreachable code for relative imports.Damien George
2017-06-15all: Make more use of mp_raise_{msg,TypeError,ValueError} helpers.Damien George
2017-05-29various: Spelling fixesVille Skyttä
2017-05-09unix/main: Implement -m option for packages.Paul Sokolovsky
2017-03-29py: Change mp_uint_t to size_t for mp_obj_str_get_data len arg.Damien George
2017-03-29py: Convert mp_uint_t to size_t for tuple/list accessors.Damien George
2017-03-28py: Use mp_raise_TypeError/mp_raise_ValueError helpers where possible.Damien George
2017-03-14py: Allow lexer to raise exceptions during construction.Damien George
2017-01-22py: Move weak-link map to objmodule.c, and expose module maps as public.Damien George
2017-01-16py/builtinimport: Remove unreachable code and change obj-import comment.Damien George
2017-01-16py/builtinimport: Raise ValueError for bad relative import, per CPython.Damien George
2017-01-08py/builtinimport: Fix bug when importing names from frozen packages.Damien George
2016-12-13py/builtinimport: Support importing packages from compiled .mpy files.Damien George
2016-11-16py: Factor persistent code load/save funcs into persistentcode.[ch].Damien George
2016-10-17py: Use mp_raise_msg helper function where appropriate.Damien George
2016-09-20py/builtinimport: Fix nanbox build after change to better handle -m modules.Paul Sokolovsky
2016-09-20builtinimport: add the module specified by -m to sys.modules as '__main__'Delio Brignoli
2016-07-02py/builtinimport: Disable "imported as namespace package" warning.Paul Sokolovsky
2016-05-23py: Allow to stat and import frozen mpy files using new frozen "VFS".Damien George
2016-05-21py/builtinimport: Unbreak bare-arm build.Paul Sokolovsky
2016-05-21py/builtinimport: Unbreak minimal build.Paul Sokolovsky