summaryrefslogtreecommitdiff
path: root/py/objmodule.c
AgeCommit message (Expand)Author
2015-05-04modstruct: Rename module to "ustruct", to allow full Python-level impl.Paul Sokolovsky
2015-05-04modmachine: Add new module to access hardware, starting with physical memory.Paul Sokolovsky
2015-04-16py: Add %q format support to mp_[v]printf, and use it.Damien George
2015-04-16py: Overhaul and simplify printf/pfenv mechanism.Damien George
2015-04-11py: Combine load_attr and store_attr type methods into one (attr).Damien George
2015-03-20py: Implement core of OrderedDict type.Paul Sokolovsky
2015-01-20py, unix: Allow to compile with -Wunused-parameter.Damien George
2015-01-20py, unix, stmhal: Allow to compile with -Wshadow.Damien George
2015-01-07py: Put all global state together in state structures.Damien George
2015-01-01py: Move to guarded includes, everywhere in py/ core.Damien George
2014-12-09py: Allow builtins to be overridden.Damien George
2014-11-05unix: fast: Set initial module dict size big to have high pystone score.Paul Sokolovsky
2014-09-08py: Print imported module's location (__file__) if available.Damien George
2014-05-03Add license header to (almost) all files.Damien George
2014-05-02py, unix: Make "mpconfig.h" be first included, as other headers depend on it.Paul Sokolovsky
2014-04-08py: Finish implementation of all del opcodes.Damien George
2014-04-05py: Make globals and locals proper dictionary objects.Damien George
2014-04-05py: Change module globals from mp_map_t* to mp_obj_dict_t*.Damien George
2014-03-30Merge map.h into obj.h.Damien George
2014-03-25Proper support for registering builtin modules in ROM.Damien George
2014-03-25Add mp_obj_module_registermux
2014-03-17py: Clean up includes.xbe
2014-03-08Implement ROMable modules. Add math module.Damien George
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-12Replace global "static" -> "STATIC", to allow "analysis builds". Part 1.Paul Sokolovsky
2014-02-05Search paths properly on import and execute __init__.py if it exists.Damien George
2014-01-22py: Initialise loaded_module map in rt_init.Damien George
2014-01-22Second stage of qstr revamp: uPy str object can be qstr or not.Damien George
2014-01-21Revamp qstrs: they now include length and hash.Damien George
2014-01-20Implement modules as singletons Python semantics.Paul Sokolovsky
2014-01-18Make VM stack grow upwards, and so no reversed args arrays.Damien George
2014-01-15type->print(): Distinguish str() and repr() variety by passing extra param.Paul Sokolovsky
2014-01-09Improved type/class/instance code; mp_obj_type_t now has load_attr, store_attr.Damien George
2014-01-08py: Stuff qstr in object pointer; keys for mp_map_t are now always mp_obj_t.Damien George
2014-01-07py: Fix allocation of unique code blocks.Damien George
2014-01-07Merge branch 'cplusplus' of https://github.com/ian-v/micropython into ian-v-c...Damien George
2014-01-06Co-exist with C++ (issue #85)ian-v
2014-01-05Convert many object types structs to use C99 tagged initializer syntax.Paul Sokolovsky
2014-01-04Convert Python types to proper Python type hierarchy.Damien George
2014-01-02Add module object, to be used eventually for import.Damien George