summaryrefslogtreecommitdiffstatshomepage
path: root/py/stream.h
Commit message (Expand)AuthorAge
* py/objstringio: Fix regression with handling SEEK_SET.Paul Sokolovsky2017-08-20
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
* all: Unify header guard usage.Alexander Steffen2017-07-18
* py/stream: Move ad-hoc ioctl constants to stream.h and rename them.Damien George2016-12-02
* all: Remove readall() method, which is equivalent to read() w/o args.Paul Sokolovsky2016-11-14
* py: Be more specific with MP_DECLARE_CONST_FUN_OBJ macros.Damien George2016-10-21
* py/mpconfig.h: Add MICROPY_STREAMS_POSIX_API setting.Paul Sokolovsky2016-07-30
* py/stream: Add adapter methods with POSIX-compatible signatures.Paul Sokolovsky2016-07-30
* py/stream: Implement generic flush() method, in terms of C-level ioctl.Paul Sokolovsky2016-07-27
* py/stream: Stream module works with errno's, so should include mperrno.h.Paul Sokolovsky2016-07-26
* py/stream.h: Remove dated comment of POSIX-specificity of EAGAIN.Paul Sokolovsky2016-07-25
* py/stream.h: Move mp_stream_write_adaptor() inside ifdef block.Paul Sokolovsky2016-07-25
* py/stream: Add mp_stream_close() helper function.Paul Sokolovsky2016-05-20
* py/stream: Support both "exact size" and "one underlying call" operations.Paul Sokolovsky2016-05-18
* py/stream: Add Python-level ioctl() method.Paul Sokolovsky2016-04-10
* py/stream.h: Add bigger inventory of stream ioctl's.Paul Sokolovsky2016-04-10
* py: Move stream-related declarations from obj.h to stream.h.Paul Sokolovsky2016-04-05
* py/stream: Add mp_stream_writeall() helper function.Paul Sokolovsky2016-03-24
* py: Add mp_get_stream_raise to factor out check for stream methods.Damien George2015-12-09
* py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George2015-11-29
* py: Change mp_print_strn_t func type to use size_t for the str length.Damien George2015-11-29
* py/stream: Allow to reuse is_nonblocking_error().Paul Sokolovsky2015-10-18
* py: Add stream_tell method, and use for unix and stmhal file tell.blmorris2015-08-13
* py: Move to guarded includes, everywhere in py/ core.Damien George2015-01-01
* stream: Implement seek operation support via ioctl, wrapped in generic method.Paul Sokolovsky2014-11-17
* unix, stmhal: Implement file.readinto() method.Paul Sokolovsky2014-10-18
* stream: Factor out mp_stream_write() method to write a memstring to stream.Paul Sokolovsky2014-07-13
* Add license header to (almost) all files.Damien George2014-05-03
* py, stream: Implement readlines for a stream.Damien George2014-05-03
* stream: Add generic unbuffered iternext method.Paul Sokolovsky2014-01-20
* Add unbuffered readline() implementation for Raw I/O files.Paul Sokolovsky2014-01-15
* Add generic impl of stream .readall() method. Use one for unix io.FileIO.Paul Sokolovsky2014-01-13
* Add generic implementations of Python read()/write methods for streams.Paul Sokolovsky2014-01-08