aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2014-01-23Merge branch 'master' of github.com:iabdalkader/micropython into iabdalkader-...Damien George
2014-01-23py: Implement bool unary op; tidy up unary op dispatch.Damien George
2014-01-23py: Simpler implementation of mp_obj_callable.Damien George
2014-01-23Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-01-23stm: LCD support for PYBv4; fix MMA reading code.Damien George
2014-01-23Fix USB CORE PCGCCTL Wrong Addressmux
2014-01-23Move RTC to Separate Modulemux
2014-01-23Add More Feature Test Macrosmux
2014-01-23mp_obj_is_callable(): Only object types can be callable.Paul Sokolovsky
2014-01-23stm: Add memcmp() implementation.Paul Sokolovsky
2014-01-23Implement simplest case of str.startswith().Paul Sokolovsky
2014-01-23py: Use C99 way of variable macro arguments.Damien George
2014-01-23py: Change macro var args in parser to be C99 compliant.Damien George
2014-01-22py: Initialise loaded_module map in rt_init.Damien George
2014-01-22Fix 1 warning and 1 bug.Damien George
2014-01-22Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-01-22Merge pull request #208 from pfalcon/string-escapesDamien George
2014-01-22Merge pull request #206 from iabdalkader/masterDamien George
2014-01-22Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-01-22stm: Fix USART3 init. Small edits to Makefile and other things.Damien George
2014-01-22Implement octal and hex escapes in strings.Paul Sokolovsky
2014-01-22Fix Feature Macro Prefixmux
2014-01-22file.readline(): Use mp_obj_str_get_data() and fix off-by-one error on EOF.Paul Sokolovsky
2014-01-22Remove Underscore from Macro Namesmux
2014-01-22Add Generic Feature Macros to mpconfigportmux
2014-01-22Second stage of qstr revamp: uPy str object can be qstr or not.Damien George
2014-01-22Merge branch 'fix-stm-discovery' of github.com:dhylands/micropython into dhyl...Damien George
2014-01-21Fix support for STM32F4DISCOVERYDave Hylands
2014-01-22py: Remove implicit conversion of float to int in mp_obj_get_int().Damien George
2014-01-21Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-01-21py: Implement break and continue byte codes, and add tests.Damien George
2014-01-21Merge pull request #204 from dhylands/masterDamien George
2014-01-21Fix malformed generated file when using python 2.7Dave Hylands
2014-01-21stm: Clean up main.c; disable libgcc by default.Damien George
2014-01-21stm: Put HSE_VALUE and other defines in mpconfigport.h.Damien George
2014-01-21stm: Put TARGET in mpconfigport.h; support PYBv4.Damien George
2014-01-21Merge pull request #202 from iabdalkader/masterDamien George
2014-01-21Add bytearray basic tests.Paul Sokolovsky
2014-01-21array: Implement iterator.Paul Sokolovsky
2014-01-21Add len() support for arrays.Paul Sokolovsky
2014-01-21Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-01-21Revamp qstrs: they now include length and hash.Damien George
2014-01-21Add OSC_VALUE to Makefilemux
2014-01-21Remove hardcoded PLL_M valuemux
2014-01-21run-tests: Allow to run tests selectively via command line.Paul Sokolovsky
2014-01-21Implement str.split(None).Paul Sokolovsky
2014-01-21str: Implement proper string (instead of byte string) indexing.Paul Sokolovsky
2014-01-21Implement string multiplication.Paul Sokolovsky
2014-01-21sequence.c: Start to refactor sequence operations for reuse among types.Paul Sokolovsky
2014-01-20unix file: Refactor and add sys.stdout/stdin/stderr.Paul Sokolovsky