index
:
user/sven/micropython.git
for-upstream
master
old
stmhal-flash
origin/HEAD
origin/docs/library/bluetooth
origin/master
origin/parse-bytecode
origin/v1.22-release
origin/v1.24-release
origin/v1.26-release
The MicroPython project
Sven Wegener
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
py
/
builtinimport.c
Age
Commit message (
Expand
)
Author
2014-04-22
builtinimport: If there was error compiling imported module, raise exception.
Paul Sokolovsky
2014-04-20
py: Add win32-specific header for alloca().
Paul Sokolovsky
2014-04-15
builtinimport: Add basic support for namespace packages.
Paul Sokolovsky
2014-04-13
py: Add more #if's for configurable MOD_SYS.
Damien George
2014-04-13
Merge pull request #476 from pfalcon/static-sys
Damien George
2014-04-13
py: Add traceback info to syntax errors.
Damien George
2014-04-13
py, unix: Convert sys module to static representation.
Paul Sokolovsky
2014-04-12
builtinimport: Implement relative imports.
Paul Sokolovsky
2014-04-12
builtinimport: Set __path__ attribute ASAP as it's clear we have a package.
Paul Sokolovsky
2014-04-12
builtinimport: Set __path__ attribute on packages.
Paul Sokolovsky
2014-04-12
builtinimport: Elaborate debug output support.
Paul Sokolovsky
2014-04-09
Remove exception name from inside the exception message
Andrew Scheller
2014-04-06
py: Add option to compiler to specify default code emitter.
Damien George
2014-04-05
py: Make globals and locals proper dictionary objects.
Damien George
2014-04-05
py: Change module globals from mp_map_t* to mp_obj_dict_t*.
Damien George
2014-04-05
py: Change nlr_jump to nlr_raise, to aid in debugging.
Damien George
2014-03-30
Merge map.h into obj.h.
Damien George
2014-03-30
Rename rt_* to mp_*.
Damien George
2014-03-25
Proper support for registering builtin modules in ROM.
Damien George
2014-03-24
py: Remove obsolete declarations; make mp_obj_get_array consistent.
Damien George
2014-03-17
py: Clean up includes.
xbe
2014-03-15
Add vstr_ins and vstr_cut_out; improve stmhal readline.
Damien George
2014-02-21
__import__: Catch relative import attempts and throw NotImplementedError.
Paul Sokolovsky
2014-02-20
import: Implement "from pkg.mod import sym" syntax properly.
Paul Sokolovsky
2014-02-16
builtinimport: Get the basic (and only basic) package imports work.
Paul Sokolovsky
2014-02-16
builtinimport.c: Recognize "namespace package" and error out as unsupported.
Paul Sokolovsky
2014-02-15
Implement proper exception type hierarchy.
Damien George
2014-02-08
Make mp_obj_str_get_data return char* instead of byte*.
Damien George
2014-02-06
Implement fixed buffer vstrs; use them for import path.
Damien George
2014-02-05
Search paths properly on import and execute __init__.py if it exists.
Damien George
2014-02-05
Implement support for sys.path when loading modules.
Paul Sokolovsky
2014-02-04
Expose __import__() function.
Paul Sokolovsky
2014-01-25
Implement mp_parse_node_free; print properly repr(string).
Damien George
2014-01-22
Second stage of qstr revamp: uPy str object can be qstr or not.
Damien George
2014-01-21
Revamp qstrs: they now include length and hash.
Damien George
2014-01-20
Implement modules as singletons Python semantics.
Paul Sokolovsky
2014-01-18
Add source file name and line number to error messages.
Damien George
2014-01-15
Convert parse errors to exceptions.
Damien George
2014-01-13
Cleanup built-ins, and fix some compiler warnings/errors.
Damien George
2014-01-04
Split qstr into pools, and put initial pool in ROM.
Damien George
2014-01-03
Change mp_compile so that it returns a function object for the module.
Damien George
2014-01-03
Basic implementation of import.
Damien George