aboutsummaryrefslogtreecommitdiff
path: root/py/builtinimport.c
AgeCommit message (Expand)Author
2014-08-30py: Change uint to mp_uint_t in runtime.h, stackctrl.h, binary.h.Damien George
2014-08-30py: Change all uint to mp_uint_t in obj.h.Damien George
2014-08-30py: Make tuple and list use mp_int_t/mp_uint_t.Damien George
2014-07-28py: Implement __file__ attribute for modules.Paul Sokolovsky
2014-06-11py: Make 3 functions static.Damien George
2014-06-07- FreeBSD provides alloca() via stdlib.h, in contrast to Linux and WindowsMarcus von Appen
2014-06-06Change comments (mainly URLs) to no longer specifically say Python 3.3Chris Angelico
2014-06-05objstr: Implement "%(key)s" % {} formatting for strings and dicts.Paul Sokolovsky
2014-05-25Change const byte* to const char* where sensible.Damien George
2014-05-24Rename configuration variables controling Python features.Damien George
2014-05-21Tidy up some configuration options.Damien George
2014-05-13py, unix: Add copyright for modules I worked closely on.Paul Sokolovsky
2014-05-10builtinimport: Fix broken namespace imports due to dup vstr_cut_tail_bytes().Paul Sokolovsky
2014-05-10builtinimport: Fix comment orphaned by one of previous commits.Paul Sokolovsky
2014-05-03Add license header to (almost) all files.Damien George
2014-05-03py: Use <alloca.h> for alloca()stijn
2014-05-02py, unix: Make "mpconfig.h" be first included, as other headers depend on it.Paul Sokolovsky
2014-04-22builtinimport: If there was error compiling imported module, raise exception.Paul Sokolovsky
2014-04-20py: Add win32-specific header for alloca().Paul Sokolovsky
2014-04-15builtinimport: Add basic support for namespace packages.Paul Sokolovsky
2014-04-13py: Add more #if's for configurable MOD_SYS.Damien George
2014-04-13Merge pull request #476 from pfalcon/static-sysDamien George
2014-04-13py: Add traceback info to syntax errors.Damien George
2014-04-13py, unix: Convert sys module to static representation.Paul Sokolovsky
2014-04-12builtinimport: Implement relative imports.Paul Sokolovsky
2014-04-12builtinimport: Set __path__ attribute ASAP as it's clear we have a package.Paul Sokolovsky
2014-04-12builtinimport: Set __path__ attribute on packages.Paul Sokolovsky
2014-04-12builtinimport: Elaborate debug output support.Paul Sokolovsky
2014-04-09Remove exception name from inside the exception messageAndrew Scheller
2014-04-06py: Add option to compiler to specify default code emitter.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-04-05py: Change nlr_jump to nlr_raise, to aid in debugging.Damien George
2014-03-30Merge map.h into obj.h.Damien George
2014-03-30Rename rt_* to mp_*.Damien George
2014-03-25Proper support for registering builtin modules in ROM.Damien George
2014-03-24py: Remove obsolete declarations; make mp_obj_get_array consistent.Damien George
2014-03-17py: Clean up includes.xbe
2014-03-15Add vstr_ins and vstr_cut_out; improve stmhal readline.Damien George
2014-02-21__import__: Catch relative import attempts and throw NotImplementedError.Paul Sokolovsky
2014-02-20import: Implement "from pkg.mod import sym" syntax properly.Paul Sokolovsky
2014-02-16builtinimport: Get the basic (and only basic) package imports work.Paul Sokolovsky
2014-02-16builtinimport.c: Recognize "namespace package" and error out as unsupported.Paul Sokolovsky
2014-02-15Implement proper exception type hierarchy.Damien George
2014-02-08Make mp_obj_str_get_data return char* instead of byte*.Damien George
2014-02-06Implement fixed buffer vstrs; use them for import path.Damien George
2014-02-05Search paths properly on import and execute __init__.py if it exists.Damien George
2014-02-05Implement support for sys.path when loading modules.Paul Sokolovsky
2014-02-04Expose __import__() function.Paul Sokolovsky
2014-01-25Implement mp_parse_node_free; print properly repr(string).Damien George