summaryrefslogtreecommitdiffstatshomepage
path: root/py/objstringio.h
Commit message (Collapse)AuthorAge
* py/objstringio: If created from immutable object, follow copy on write policy.Paul Sokolovsky2017-06-09
| | | | | Don't create copy of immutable object's contents until .write() is called on BytesIO.
* extmod/modujson: Implement ujson.load() to load JSON from a stream.Damien George2016-10-13
This refactors ujson.loads(s) to behave as ujson.load(StringIO(s)). Increase in code size is: 366 bytes for unix x86-64, 180 bytes for stmhal, 84 bytes for esp8266.