aboutsummaryrefslogtreecommitdiff
path: root/py/qstrdefs.h
AgeCommit message (Expand)Author
2014-05-10modsys, unix: Add sys.exit(), should be implemented by a port.Paul Sokolovsky
2014-05-10objset: Give up and implement frozenset.Paul Sokolovsky
2014-05-10py: Rename byte_code to bytecode everywhere.Damien George
2014-05-08Add gc.enable, gc.disable; remove pyb.gc.Damien George
2014-05-08py, compiler: Add basic support for A=const(123).Damien George
2014-05-06py: Add keyword arg support to enumerate constructor.Damien George
2014-05-06modgc: Add new module for GC-related functionality.Paul Sokolovsky
2014-05-03Add license header to (almost) all files.Damien George
2014-05-03py, stream: Implement readlines for a stream.Damien George
2014-04-28py: Remove silly comment about interning keywords.Damien George
2014-04-27py: Add '*' qstr for 'import *'; use blank qstr for comprehension arg.Damien George
2014-04-26py: "read" & "write" are so common that make them core.Paul Sokolovsky
2014-04-26modio: Implement io.StringIO class.Paul Sokolovsky
2014-04-26objstr: Implement .lstrip() & .rstrip().Paul Sokolovsky
2014-04-25py: Support instance __call__ method.Paul Sokolovsky
2014-04-21py: Add 'align' and 'data' meta-instructions to inline assembler.Damien George
2014-04-19modstruct: Initial implementation of struct.pack().Paul Sokolovsky
2014-04-17py: Add cmath module, for complex math. Disabled by default.Damien George
2014-04-15py: Add builtin functions bin and oct, and some tests for them.Damien George
2014-04-15py: Fix builtin hex to print prefix.Damien George
2014-04-15py: Add hex builtin function.Damien George
2014-04-14modsys: Implement sys.version.Paul Sokolovsky
2014-04-13objdict: Add __delitem__.Paul Sokolovsky
2014-04-13py: Add property object, with basic functionality.Damien George
2014-04-13modsys: Implement sys.byteorder.Paul Sokolovsky
2014-04-13modsys: Implement basic sys.version_info.Paul Sokolovsky
2014-04-13Merge pull request #476 from pfalcon/static-sysDamien George
2014-04-13objset: Implement __contains__() op-method.Paul Sokolovsky
2014-04-13py: Rename collections module to _collections.Paul Sokolovsky
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