index
:
openmano-mpy
master
MicroPython source and hardware configuration for OpenMano
Damien George
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
py
/
stream.c
Age
Commit message (
Expand
)
Author
2014-03-17
py: Clean up includes.
xbe
2014-02-15
Implement proper exception type hierarchy.
Damien George
2014-02-12
Replace global "static" -> "STATIC", to allow "analysis builds". Part 2.
Paul Sokolovsky
2014-02-08
Make mp_obj_str_get_data return char* instead of byte*.
Damien George
2014-01-22
file.readline(): Use mp_obj_str_get_data() and fix off-by-one error on EOF.
Paul Sokolovsky
2014-01-22
Second stage of qstr revamp: uPy str object can be qstr or not.
Damien George
2014-01-21
Merge branch 'master' of github.com:micropython/micropython
Damien George
2014-01-21
Revamp qstrs: they now include length and hash.
Damien George
2014-01-20
stream_read(): Shrink memory block to actual read size.
Paul Sokolovsky
2014-01-20
stream: Add generic unbuffered iternext method.
Paul Sokolovsky
2014-01-19
Change int to uint for n_args in function with variable arguments.
Damien George
2014-01-16
Make file.read() and file.read(-1) call out to file.readall().
Paul Sokolovsky
2014-01-16
Do not assume that vstr buf is the same after it was extended.
Paul Sokolovsky
2014-01-15
Add unbuffered readline() implementation for Raw I/O files.
Paul Sokolovsky
2014-01-13
Add generic impl of stream .readall() method. Use one for unix io.FileIO.
Paul Sokolovsky
2014-01-08
py: add variable argument exception constructor function.
Damien George
2014-01-08
Add generic implementations of Python read()/write methods for streams.
Paul Sokolovsky