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