aboutsummaryrefslogtreecommitdiff
path: root/py/qstrdefs.h
AgeCommit message (Expand)Author
2014-04-13py: Move sys attribute qstrs's to core.Paul Sokolovsky
2014-04-13objstr: Add str.encode() and bytes.decode() methods.Paul Sokolovsky
2014-04-12builtinimport: Set __path__ attribute on packages.Paul Sokolovsky
2014-04-12py: Preprocess qstrdefs.h before feeding to makeqstrdata.py.Paul Sokolovsky
2014-04-10py: Start implementing "struct" module.Paul Sokolovsky
2014-04-09Merge branch 'str-index' of github.com:xbe/micropython into xbe-str-indexDamien George
2014-04-09objint: Implement int.from_bytes() class method and .to_bytes() method.Paul Sokolovsky
2014-04-08py: Implement str.[r]index() and add tests for them.xbe
2014-04-05Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-04-05py: Replace stream_p with *stream_p in mp_obj_type_t.Damien George
2014-04-06py: Implement globals() and locals() builtins.Paul Sokolovsky
2014-04-05Merge pull request #425 from iabdalkader/delDamien George
2014-04-05Move del to localsmux
2014-04-03py: Add "io" module.Paul Sokolovsky
2014-04-02py: Add support for sep and end keywords in print.Damien George
2014-03-31py: Implement __getattr__.Damien George
2014-03-29vm: Implement "with" statement (SETUP_WITH and WITH_CLEANUP bytecodes).Paul Sokolovsky
2014-03-27py: Implement getattr() builtin.Paul Sokolovsky
2014-03-26Change mp_method_t.name from const char * to qstr.Damien George
2014-03-26py: Add support for user-defined iterators via __iter__, __next__.Damien George
2014-03-25py: Removed some unnecessary exception objects.Damien George
2014-03-25objexcept: Add "args" exception attribute, as well as StopIteration.value.Paul Sokolovsky
2014-03-22py: Remove some unnecessary exception objects.Damien George
2014-03-22py: Add 'object' object.Damien George
2014-03-22Added exception hierarchy except for OSError and UnicodeError (requires argum...Rachel Dowdall
2014-03-22Fixed broken math functions that return bool and added some more.Rachel Dowdall
2014-03-20Added ZeroDivisionError to float division.Rachel Dowdall
2014-03-20Added various simple functions to math module.Rachel Dowdall
2014-03-20py: Add math.e constant.Damien George
2014-03-16Implement support for __str__ and __repr__ special methods in classes.Paul Sokolovsky
2014-03-12py: Add expm1 to math module.Damien George
2014-03-08Implement ROMable modules. Add math module.Damien George
2014-03-03Add basic collections.namedtuple implementation.Paul Sokolovsky
2014-02-15Implement proper exception type hierarchy.Damien George
2014-02-15Change mp_obj_type_t.name from const char * to qstr.Damien George
2014-02-10Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-02-09Add NotImplementedError.Paul Sokolovsky
2014-02-08py: Add some qstrs to the global table.Damien George
2014-02-06Add staticmethod and classmethod to builtin namespace.Damien George
2014-02-05Merge pull request #262 from pfalcon/sys-pathDamien George
2014-02-05py: Add built-in super.Damien George
2014-02-05Implement support for sys.path when loading modules.Paul Sokolovsky
2014-02-04Use qstr id to create sys module.Paul Sokolovsky
2014-02-04Add ImportError.Paul Sokolovsky
2014-02-04Expose __import__() function.Paul Sokolovsky
2014-02-03py: Implement builtin exec.Damien George
2014-02-02py: Add very basic implementation of dir() builtin.Damien George
2014-02-01Implement and add tests for the id() builtin function.xbe
2014-01-30py: Improve __bool__ and __len__ dispatch; add slots for them.Damien George
2014-01-25Implement mp_parse_node_free; print properly repr(string).Damien George