summaryrefslogtreecommitdiffstatshomepage
path: root/unix/file.c
Commit message (Expand)AuthorAge
* Implement kwargs for builtin open() and _io.FileIOstijn2014-10-21
* unix, stmhal: Implement file.readinto() method.Paul Sokolovsky2014-10-18
* Change some parts of the core API to use mp_uint_t instead of uint/int.Damien George2014-08-30
* py: Make MP_OBJ_NEW_SMALL_INT cast arg to mp_int_t itself.Damien George2014-07-31
* py: Change stream protocol API: fns return uint; is_text for text.Damien George2014-07-27
* Add fsync for windows, i.e. _commit. See dce8876stijn2014-07-16
* unix: file: No fsync() on Windows.v1.2Paul Sokolovsky2014-07-13
* unix: file: Implement .flush() method.Paul Sokolovsky2014-07-13
* Rename machine_(u)int_t to mp_(u)int_t.Damien George2014-07-03
* Rename configuration variables controling Python features.Damien George2014-05-24
* py: Implement proper separation between io.FileIO and io.TextIOWrapper.Paul Sokolovsky2014-05-19
* Add license header to (almost) all files.Damien George2014-05-03
* py, stream: Implement readlines for a stream.Damien George2014-05-03
* unix, file.c: adhere to coding conventions.Damien George2014-05-03
* CPython compatibility: raise an error for operations on a closed file descriptorstijn2014-05-03
* py, unix: Make "mpconfig.h" be first included, as other headers depend on it.Paul Sokolovsky2014-05-02
* unix: Workaround MP_OBJ_NEW_SMALL_INT() 64-bit issues.Paul Sokolovsky2014-04-22
* unix: OSError's args[0] should be errno numeric value.Paul Sokolovsky2014-04-22
* unix file: mingw32 has STDIN_FILENO and friends in stdio.h .Paul Sokolovsky2014-04-20
* py, unix: Convert sys module to static representation.Paul Sokolovsky2014-04-13
* unix, stmhal: Consistently use "FileIO" as class name for file objects.Paul Sokolovsky2014-04-08
* py: Replace stream_p with *stream_p in mp_obj_type_t.Damien George2014-04-05
* py: Change nlr_jump to nlr_raise, to aid in debugging.Damien George2014-04-05
* unix: Use STATIC modifier to enable code size analysis via map file.Paul Sokolovsky2014-04-04
* unix file: Implement context manager protocol (for "with" statement).Paul Sokolovsky2014-04-03
* Merge map.h into obj.h.Damien George2014-03-30
* Rename rt_* to mp_*.Damien George2014-03-30
* Remove mp_obj_type_t.methods entry and use .locals_dict instead.Damien George2014-03-26
* Change mp_method_t.name from const char * to qstr.Damien George2014-03-26
* unix: Clean up includes.xbe2014-03-16
* Implement proper exception type hierarchy.Damien George2014-02-15
* Change mp_obj_type_t.name from const char * to qstr.Damien George2014-02-15
* Allow ports to define statically builtin functions.Paul Sokolovsky2014-02-14
* Fix some int casting that failed on 64 bit architecture.Damien George2014-02-10
* io.File, socket types: Add fileno() method.Paul Sokolovsky2014-02-08
* Second stage of qstr revamp: uPy str object can be qstr or not.Damien George2014-01-22
* Merge branch 'master' of github.com:micropython/micropythonDamien George2014-01-21
|\
| * unix file: Refactor and add sys.stdout/stdin/stderr.Paul Sokolovsky2014-01-20
| * unix io.FileIO: Add iteration support.Paul Sokolovsky2014-01-20
* | Revamp qstrs: they now include length and hash.Damien George2014-01-21
|/
* Fix incorrect prototype of mp_builtin_open() after args refactor.Paul Sokolovsky2014-01-19
* Make VM stack grow upwards, and so no reversed args arrays.Damien George2014-01-18
* Merge branch 'str-repr' of github.com:pfalcon/micropython into pfalcon-str-reprDamien George2014-01-15
|\
| * type->print(): Distinguish str() and repr() variety by passing extra param.Paul Sokolovsky2014-01-15
* | 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
* py: add variable argument exception constructor function.Damien George2014-01-08
* unix: Add basic implementation of io.FileIO object.Paul Sokolovsky2014-01-08