1. ae8d867 py: Add iter_buf to getiter type method. by Damien George · 10 years ago
  2. 50d3a9d py/objstringio: Allow to specify initial capacity by passing numeric argument. by Paul Sokolovsky · 9 years ago
  3. 7d0d721 py: Use mp_raise_msg helper function where appropriate. by Damien George · 9 years ago
  4. 824f5c5 py/vstr: Combine vstr_new_size with vstr_new since they are rarely used. by Damien George · 9 years ago
  5. e93c1ca extmod/modujson: Implement ujson.load() to load JSON from a stream. by Damien George · 9 years ago
  6. d22a04d py/objstringio: Add readinto() method. by Paul Sokolovsky · 9 years ago
  7. 3990b17 py/objstringio: Implement MP_STREAM_SEEK ioctl and add seek() method. by Paul Sokolovsky · 9 years ago
  8. f039ac5 py/objstringio: Add MP_STREAM_FLUSH ioctl and flush() method. by Paul Sokolovsky · 9 years ago
  9. 07209f8 all: Rename mp_obj_type_t::stream_p to protocol. by Paul Sokolovsky · 9 years ago
  10. 2ae6697 py/objstringio: Add TODO comment about avoiding copying on .getvalue(). by Paul Sokolovsky · 9 years ago
  11. 5b3f0b7 py: Change first arg of type.make_new from mp_obj_t to mp_obj_type_t*. by Damien George · 10 years ago
  12. 4b72b3a py: Change type signature of builtin funs that take variable or kw args. by Damien George · 10 years ago
  13. a0c9781 py: Change type of .make_new and .call args: mp_uint_t becomes size_t. by Damien George · 10 years ago
  14. 999cedb py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. by Damien George · 10 years ago
  15. cbf7674 py: Add MP_ROM_* macros and mp_rom_* types and use them. by Damien George · 10 years ago
  16. 7f9d1d6 py: Overhaul and simplify printf/pfenv mechanism. by Damien George · 10 years ago
  17. bf19541 py: Prevent segfault for operations on closed StringIO. by stijn · 11 years ago
  18. ff8dd3f py, unix: Allow to compile with -Wunused-parameter. by Damien George · 11 years ago
  19. 51dfcb4 py: Move to guarded includes, everywhere in py/ core. by Damien George · 11 years ago
  20. 969a6b3 py: Make functions static where appropriate. by Damien George · 11 years ago
  21. ecc88e9 Change some parts of the core API to use mp_uint_t instead of uint/int. by Damien George · 11 years ago
  22. adf0f2a py: Change stream protocol API: fns return uint; is_text for text. by Damien George · 11 years ago
  23. 40f3c02 Rename machine_(u)int_t to mp_(u)int_t. by Damien George · 11 years ago
  24. f600a6a py: Slightly improve efficiency of mp_obj_new_str; rename str_new. by Damien George · 11 years ago
  25. ee3fd46 Rename configuration variables controling Python features. by Damien George · 11 years ago
  26. a47b64a objstringio: Implement io.BytesIO. by Paul Sokolovsky · 11 years ago
  27. 04b9147 Add license header to (almost) all files. by Damien George · 11 years ago
  28. f54bcbf py, unix: Make "mpconfig.h" be first included, as other headers depend on it. by Paul Sokolovsky · 11 years ago
  29. 100cd36 objstringio: Compile only if MICROPY_ENABLE_MOD_IO defined. by Paul Sokolovsky · 11 years ago
  30. cb9dc08 modio: Implement io.StringIO class. by Paul Sokolovsky · 11 years ago