aboutsummaryrefslogtreecommitdiff
path: root/unix
AgeCommit message (Expand)Author
2014-04-04unix: Rename module sources per latest naming conventions (mod*.c).Paul Sokolovsky
2014-04-04unix: Use STATIC modifier to enable code size analysis via map file.Paul Sokolovsky
2014-04-04unix: Routines related to terminal reading should use system malloc.Paul Sokolovsky
2014-04-04unix: Allocate more heap memory by default on 64 bit machines.Damien George
2014-04-03Changes to get unix/ port compiling on Cygwin.Damien George
2014-04-03unix file: Implement context manager protocol (for "with" statement).Paul Sokolovsky
2014-04-02unix: Enable GC.Paul Sokolovsky
2014-04-02unix: Use argv[0] for command name in usage.Paul Sokolovsky
2014-04-02unix: Support #if-able impl-specific cmdline options.Paul Sokolovsky
2014-04-02unix: Properly recognize and report when script on cmdline not found.Paul Sokolovsky
2014-03-31py: Remove old "run time" functions that were 1 liners.Damien George
2014-03-30Merge map.h into obj.h.Damien George
2014-03-30Rename rt_* to mp_*.Damien George
2014-03-29unix: Fix ffi.c to compile with latest changes to API.Damien George
2014-03-29py: Rename old const type objects to mp_type_* for consistency.Damien George
2014-03-26Remove mp_obj_type_t.methods entry and use .locals_dict instead.Damien George
2014-03-26Change mp_method_t.name from const char * to qstr.Damien George
2014-03-16unix: Clean up includes.xbe
2014-03-08unix: Make usage info reflect actual usage of -X option.Damien George
2014-03-08Implement ROMable modules. Add math module.Damien George
2014-03-04unix: Add to usage print-out telling about -X option.Damien George
2014-03-04unix: Allow to set heap size using "-X heapsize=N" option.Paul Sokolovsky
2014-03-03unix: Add GC support for ARM architecture.Paul Sokolovsky
2014-02-28MICROPY_USE_READLINE: Selects link lib, so should be defined in mpconfigport.mkPaul Sokolovsky
2014-02-26GC: Fix printf formats for debugging; add gc_dump_alloc_table.Damien George
2014-02-22Add arbitrary precision integer support.Damien George
2014-02-16Make DEBUG_printf() a proper function, implementation is port-dependent.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-14Merge pull request #291 from GordonMcGregor/osx_buildDamien George
2014-02-14Merge pull request #288 from pfalcon/port-builtinsDamien George
2014-02-14OS X compatible -map syntax for LDFLAGSGordon McGregor
2014-02-14ffi: Implement ffivar.get()/set() methods.Paul Sokolovsky
2014-02-14Allow ports to define statically builtin functions.Paul Sokolovsky
2014-02-12unix Makefile: Split off optimization options to COPT variable.Paul Sokolovsky
2014-02-11Merge pull request #278 from pfalcon/unix-gcDamien George
2014-02-11More GC debugging improvements.Paul Sokolovsky
2014-02-11unix: Implement garbage collection support.Paul Sokolovsky
2014-02-11Enable link map file generation.Paul Sokolovsky
2014-02-11Rename str_join -> strjoin to make it not clash with objstr's one.Paul Sokolovsky
2014-02-10Fix some int casting that failed on 64 bit architecture.Damien George
2014-02-10socket: Tighten up int-to-str conversion.Paul Sokolovsky
2014-02-10socket: Make sure that symbol definitions are const.Paul Sokolovsky
2014-02-09unix: Implement time.sleep().Paul Sokolovsky
2014-02-08unix microsocket: Add dummy makefile() method.Paul Sokolovsky
2014-02-08ffi: Fix mp_obj_str_get_data() return type.Paul Sokolovsky
2014-02-08io.File, socket types: Add fileno() method.Paul Sokolovsky
2014-02-08Rename "rawsocket" module to "microsocket".Paul Sokolovsky
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