summaryrefslogtreecommitdiffstatshomepage
path: root/py/builtin.c
Commit message (Expand)AuthorAge
* Make mp_obj_str_get_data return char* instead of byte*.Damien George2014-02-08
* py: Add very basic implementation of dir() builtin.Damien George2014-02-02
* Change id to return signed integer.Damien George2014-02-02
* Implement and add tests for the id() builtin function.xbe2014-02-01
* 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
|\
| * Add dummy bytes() constructor.Paul Sokolovsky2014-01-20
* | Revamp qstrs: they now include length and hash.Damien George2014-01-21
|/
* Change int to uint for n_args in function with variable arguments.Damien George2014-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
|\
| * Implement str() and repr() builtin functions.Paul Sokolovsky2014-01-15
| * type->print(): Distinguish str() and repr() variety by passing extra param.Paul Sokolovsky2014-01-15
* | Implement repr.Damien George2014-01-15
|/
* Tidy up.Damien George2014-01-14
* Merge remote-tracking branch 'upstream/master' into builtinsJohn R. Lenton2014-01-13
|\
| * Cleanup built-ins, and fix some compiler warnings/errors.Damien George2014-01-13
* | Made sorted() raise an exception instead of aborting when given no arguments;...John R. Lenton2014-01-13
* | Cleaned up sorted() as per Damien's suggestions.John R. Lenton2014-01-13
* | sortedJohn R. Lenton2014-01-13
|/
* Added dict.fromkeys. Are we done with dict and #99 yet? I do think we are.John R. Lenton2014-01-10
* Improved type/class/instance code; mp_obj_type_t now has load_attr, store_attr.Damien George2014-01-09
* py: Proper framework for built-in 'type'.Damien George2014-01-08
* py: add variable argument exception constructor function.Damien George2014-01-08
* py: Stuff qstr in object pointer; keys for mp_map_t are now always mp_obj_t.Damien George2014-01-08
* py: Improve __build_class__.Damien George2014-01-08
* Convert Python types to proper Python type hierarchy.Damien George2014-01-04
* Split qstr into pools, and put initial pool in ROM.Damien George2014-01-04
* Basic implementation of import.Damien George2014-01-03
* py: Add framework for built-in "type()" function.Damien George2014-01-02
* py: add int() and float() built-ins, partially implemented.Damien George2014-01-01
* py: add dict length function, and fix rt_store_set.Damien2013-12-29
* Change memory allocation API to require size for free and realloc.Damien2013-12-29
* py: simplify __next__ method for generators.Damien2013-12-21
* Change object representation from 1 big union to individual structs.Damien2013-12-21
* py: add more Python built-in functions.Damien2013-12-17
* py: split runtime into map, obj, builtin.Damien2013-12-17