- a3dc1b1 all: Remove inclusion of internal py header files. by Damien George · 8 years ago
- 55f3324 all: Use the name MicroPython consistently in comments by Alexander Steffen · 8 years ago
- e9cb1f8 py/objmodule: Move module init/deinit code into runtime functions. by Damien George · 9 years ago
- 9de9191 py: Move weak-link map to objmodule.c, and expose module maps as public. by Damien George · 9 years ago
- d02f6a9 extmod/modutimeq: Refactor into optimized class. by Paul Sokolovsky · 9 years ago
- 8f5bc3f stmhal/moduselect: Move to extmod/ for reuse by other ports. by Paul Sokolovsky · 9 years ago
- 93c4a6a all: Remove 'name' member from mp_obj_module_t struct. by Damien George · 9 years ago
- 27cc077 py: Add basic _thread module, with ability to start a new thread. by Damien George · 9 years ago
- 337111b py: Support to build berkeley db 1.85 and "btree" module. by Paul Sokolovsky · 9 years ago
- 596a3fe py: Add uerrno module, with errno constants and dict. by Damien George · 9 years ago
- 9549590 py/modcollections: Rename module name have "u" prefix for consistency. by Paul Sokolovsky · 9 years ago
- ddb9dba py/modio: Rename module name to "uio" for consistency with other modules. by Paul Sokolovsky · 9 years ago
- 25d0f7d extmod/modwebrepl: Module to handle WebREPL protocol. by Paul Sokolovsky · 9 years ago
- 53ad681 extmod: Add initial framebuf module. by Damien George · 9 years ago
- 24342dd extmod/modwebsocket: Start module for WebSocket helper functions. by Paul Sokolovsky · 9 years ago
- a58a91e extmod/modurandom: Add "urandom" module. by Paul Sokolovsky · 10 years ago
- f925165 unix: Move modmachine into unix directory by Dave Hylands · 10 years ago
- 2b7236d py: Make it easy to build without MICROPY_PY_BUILTINS_COMPLEX. by Paul Sokolovsky · 10 years ago
- 1a1d11f py/modsys: Implement sys.modules. by Paul Sokolovsky · 10 years ago
- 999cedb py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. by Damien George · 10 years ago
- cbf7674 py: Add MP_ROM_* macros and mp_rom_* types and use them. by Damien George · 10 years ago
- e0d7740 extmod/modlwip: slip: Use stream protocol and be port-independent. by Paul Sokolovsky · 10 years ago
- 3c9c368 py: Add support to call __init__ from a builtin module on first import. by Damien George · 10 years ago
- aaa8867 modussl: SSL socket wrapper module based on axTLS. by Paul Sokolovsky · 10 years ago
- 3d3ef36 modstruct: Rename module to "ustruct", to allow full Python-level impl. by Paul Sokolovsky · 10 years ago
- 0116218 modmachine: Add new module to access hardware, starting with physical memory. by Paul Sokolovsky · 10 years ago
- 044c473 py: Add %q format support to mp_[v]printf, and use it. by Damien George · 10 years ago
- 7f9d1d6 py: Overhaul and simplify printf/pfenv mechanism. by Damien George · 10 years ago
- b1bbe96 py: Combine load_attr and store_attr type methods into one (attr). by Damien George · 10 years ago
- 0ef01d0 py: Implement core of OrderedDict type. by Paul Sokolovsky · 10 years ago
- ff8dd3f py, unix: Allow to compile with -Wunused-parameter. by Damien George · 11 years ago
- 50912e7 py, unix, stmhal: Allow to compile with -Wshadow. by Damien George · 11 years ago
- b4b10fd py: Put all global state together in state structures. by Damien George · 11 years ago
- 51dfcb4 py: Move to guarded includes, everywhere in py/ core. by Damien George · 11 years ago
- 78d702c py: Allow builtins to be overridden. by Damien George · 11 years ago
- 346aacf unix: fast: Set initial module dict size big to have high pystone score. by Paul Sokolovsky · 11 years ago
- 377b80b py: Print imported module's location (__file__) if available. by Damien George · 11 years ago
- 04b9147 Add license header to (almost) all files. by Damien George · 11 years ago
- f54bcbf py, unix: Make "mpconfig.h" be first included, as other headers depend on it. by Paul Sokolovsky · 11 years ago
- 1d24ea5 py: Finish implementation of all del opcodes. by Damien George · 11 years ago
- 7efc5b3 py: Make globals and locals proper dictionary objects. by Damien George · 11 years ago
- 8b0535e py: Change module globals from mp_map_t* to mp_obj_dict_t*. by Damien George · 11 years ago
- df6567e Merge map.h into obj.h. by Damien George · 11 years ago
- caac542 Proper support for registering builtin modules in ROM. by Damien George · 11 years ago
- 89d4524 Add mp_obj_module_register by mux · 11 years ago
- efe3422 py: Clean up includes. by xbe · 11 years ago
- 0c36da0 Implement ROMable modules. Add math module. by Damien George · 11 years ago
- c596612 Implement proper exception type hierarchy. by Damien George · 11 years ago
- a71c83a Change mp_obj_type_t.name from const char * to qstr. by Damien George · 11 years ago
- d5df6cd Replace global "static" -> "STATIC", to allow "analysis builds". Part 1. by Paul Sokolovsky · 11 years ago
- e09ffa1 Search paths properly on import and execute __init__.py if it exists. by Damien George · 12 years ago
- 0d02874 py: Initialise loaded_module map in rt_init. by Damien George · 12 years ago
- 5fa93b6 Second stage of qstr revamp: uPy str object can be qstr or not. by Damien George · 12 years ago
- 55baff4 Revamp qstrs: they now include length and hash. by Damien George · 12 years ago
- d720ab5 Implement modules as singletons Python semantics. by Paul Sokolovsky · 12 years ago
- 20006db Make VM stack grow upwards, and so no reversed args arrays. by Damien George · 12 years ago
- 76d982e type->print(): Distinguish str() and repr() variety by passing extra param. by Paul Sokolovsky · 12 years ago
- 062478e Improved type/class/instance code; mp_obj_type_t now has load_attr, store_attr. by Damien George · 12 years ago
- 38a2da6 py: Stuff qstr in object pointer; keys for mp_map_t are now always mp_obj_t. by Damien George · 12 years ago
- 7b21c2d py: Fix allocation of unique code blocks. by Damien George · 12 years ago
- 97209d3 Merge branch 'cplusplus' of https://github.com/ian-v/micropython into ian-v-cplusplus by Damien George · 12 years ago
- 7a16fad Co-exist with C++ (issue #85) by ian-v · 12 years ago
- 860ffb0 Convert many object types structs to use C99 tagged initializer syntax. by Paul Sokolovsky · 12 years ago
- 71c5181 Convert Python types to proper Python type hierarchy. by Damien George · 12 years ago
- 2870862 Add module object, to be used eventually for import. by Damien George · 12 years ago