aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2014-05-28Merge pull request #629 from dhylands/fix-unix-debugDamien George
2014-05-26Fix DEBUG=1 buildsDave Hylands
2014-05-26modos: stat(): Accept bytes argument.Paul Sokolovsky
2014-05-26tests: Add small testcase for 3-arg slices.Paul Sokolovsky
2014-05-25py, vm: Where possible, make variables local to each opcode.Damien George
2014-05-25py: Slightly improve efficiency of mp_obj_new_str; rename str_new.Damien George
2014-05-25Change const byte* to const char* where sensible.Damien George
2014-05-25Merge branch 'pfalcon-keep-strings-uninterned'Damien George
2014-05-25py: Don't automatically intern strings in parser.Damien George
2014-05-25objlist: Implement support for arbitrary (3-arg) slices.Paul Sokolovsky
2014-05-25py: Refactor slice helpers, preparing to support arbitrary slicing.Paul Sokolovsky
2014-05-25Merge branch 'keep-strings-uninterned' of github.com:pfalcon/micropython into...Damien George
2014-05-25sequence: Throw exception for not implemented slice steps.Paul Sokolovsky
2014-05-25objlist: Implement growing slice assignment.Paul Sokolovsky
2014-05-25py: Handle case of slice start > stop in common sequence function.Paul Sokolovsky
2014-05-25objslice: Support arbitrary objects start, stop, and step.Paul Sokolovsky
2014-05-24Add SystemExit exception and use it in unix/ and stmhal/ ports.Damien George
2014-05-24Rename configuration variables controling Python features.Damien George
2014-05-24modsocket: 64-bit cleanness.Paul Sokolovsky
2014-05-24objstr: Implement .endswith().Paul Sokolovsky
2014-05-24unix modsocket: Make .makefile() method more compliant.Paul Sokolovsky
2014-05-22py: Initial attempts to actually allow implementing __new__ in Python.Paul Sokolovsky
2014-05-21objobject: Fix arguments to __init__().Paul Sokolovsky
2014-05-21unix: Fix casting issue, int to small int object.Damien George
2014-05-21Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-05-21Tidy up some configuration options.Damien George
2014-05-21objtype: super: Fall back to "object" lookup as last resort.Paul Sokolovsky
2014-05-21objtype: super: Add stop condition for looking up in base types.Paul Sokolovsky
2014-05-21stm: Remove long-obsolete stm/ port.Damien George
2014-05-21unix, Mac support: Generate order.def via Makefile.Damien George
2014-05-21Merge pull request #607 from Anton-2/osx-clangDamien George
2014-05-21py: Rename MP_OBJ_NOT_SUPPORTED to MP_OBJ_NULL.Damien George
2014-05-21stmhal: Stop USB before entering DFU by software.Damien George
2014-05-20Merge pull request #621 from stinos/migw-w64-fixPaul Sokolovsky
2014-05-20modstruct: struct_calcsize: Fix case of uninitialized var.Paul Sokolovsky
2014-05-20windows: Fix compilation with mingw-w64 so it uses correct printf implementat...stijn
2014-05-19qemu-arm: Disable "io" module.Paul Sokolovsky
2014-05-19py: Implement proper separation between io.FileIO and io.TextIOWrapper.Paul Sokolovsky
2014-05-19objexcept: Implement explicit __init__ method, useful for subclasses.Paul Sokolovsky
2014-05-19tests: Update subclass-native2.py for __new__/__init__ refactor.Paul Sokolovsky
2014-05-19objtype: Separate __new__ and __init__ methods.Paul Sokolovsky
2014-05-19stmhal: Fix DAC documentation: need to convert float to int for buf.Damien George
2014-05-19stmhal: Fix write_timed function for DAC(2).Damien George
2014-05-19stmhal: Make pyb.bootloader take no arguments.Damien George
2014-05-19Merge pull request #618 from swegener/jump-to-bootloaderDamien George
2014-05-18stmhal: Remap system flash and adjust addressesSven Wegener
2014-05-18stmhal: Activate bootloader with pyb.bootloader()Sven Wegener
2014-05-17Merge pull request #615 from swegener/for-upstreamPaul Sokolovsky
2014-05-17py: Fix mp_obj_t -> mp_const_obj_t for mp_obj_int_get_checked()Sven Wegener
2014-05-17py: More mp_identity usage.Paul Sokolovsky