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.h
Age
Commit message (
Expand
)
Author
2015-12-09
py: Add mp_get_stream_raise to factor out check for stream methods.
Damien George
2015-11-29
py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.
Damien George
2015-11-29
py: Change mp_print_strn_t func type to use size_t for the str length.
Damien George
2015-10-18
py/stream: Allow to reuse is_nonblocking_error().
Paul Sokolovsky
2015-08-13
py: Add stream_tell method, and use for unix and stmhal file tell.
blmorris
2015-01-01
py: Move to guarded includes, everywhere in py/ core.
Damien George
2014-11-17
stream: Implement seek operation support via ioctl, wrapped in generic method.
Paul Sokolovsky
2014-10-18
unix, stmhal: Implement file.readinto() method.
Paul Sokolovsky
2014-07-13
stream: Factor out mp_stream_write() method to write a memstring to stream.
Paul Sokolovsky
2014-05-03
Add license header to (almost) all files.
Damien George
2014-05-03
py, stream: Implement readlines for a stream.
Damien George
2014-01-20
stream: Add generic unbuffered iternext method.
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
Add generic implementations of Python read()/write methods for streams.
Paul Sokolovsky