aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2014-03-23stmhal: Improve LED intensity get/set method.Damien George
2014-03-23py: Improve dir(): extract names from type->methods table.Damien George
2014-03-22stmhal: Rename servo_TIM2_Handle -> TIM2_Handle.Damien George
2014-03-22Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-03-22stmhal: Add intensity method for blue LED.Damien George
2014-03-22stmhal: Add input() and pyb.input() functions.Damien George
2014-03-22py: Remove some unnecessary exception objects.Damien George
2014-03-22objgenerator: Add comments for latest mp_obj_gen_instance_t refactors.Paul Sokolovsky
2014-03-22py: Add 'object' object.Damien George
2014-03-22py: Add function to convert long int to float.Damien George
2014-03-22stm/stmhal: Add more math stubs.Damien George
2014-03-22py: Fix types in new math functions.Damien George
2014-03-22py: Fix int -> machine_uint_t.Damien George
2014-03-22Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-03-22Merge pull request #360 from rjdowdall/masterDamien George
2014-03-22Merge branch 'master' of https://github.com/rjdowdall/micropythonRachel Dowdall
2014-03-22Fixed floor division on mp ints and small ints. Added a floordivide test case.Rachel Dowdall
2014-03-22Merge pull request #359 from rjdowdall/masterDamien George
2014-03-22Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-03-22Fixed floor division on mp ints and small ints. Added a floordivide test case.Rachel Dowdall
2014-03-22stmhal: Servo driver can move at a given speed.Damien George
2014-03-22Merge pull request #358 from pfalcon/gen-exc-stackDamien George
2014-03-22Fixed modulo operator on ints and mp ints to agree with python. Added intdivm...Rachel Dowdall
2014-03-22objgenerator: Implement .throw() method to throw exceptions into generator.Paul Sokolovsky
2014-03-22objgenerator: Implement throwing exceptions out of generator.Paul Sokolovsky
2014-03-22objgenerator: Keep exception stack within generator object, like value stack.Paul Sokolovsky
2014-03-22stmhal: Add servo driver.Damien George
2014-03-22Added exception hierarchy except for OSError and UnicodeError (requires argum...Rachel Dowdall
2014-03-22stmhal: Add time module with sleep function.Damien George
2014-03-22stmhal: Add os module with a few basic functions.Damien George
2014-03-22Fixed broken math functions that return bool and added some more.Rachel Dowdall
2014-03-22stmhal: Add PYBv10 config; add RNG support.Damien George
2014-03-22stmhal: Tidy up USB CDC+MSC device some more.Damien George
2014-03-22sthmal: Remove obsolete files.Damien George
2014-03-22stmhal: Tidy up USB device configuration. Make it use less RAM.Damien George
2014-03-22Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-03-22stmhal: USB CDC and MSC device work together.Damien George
2014-03-22Merge remote-tracking branch 'upstream/master'Rachel Dowdall
2014-03-22showbc: Dump YIELD_FROM.Paul Sokolovsky
2014-03-21Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-03-21stmhal: Add support for USB MSC device.Damien George
2014-03-21Merge pull request #355 from pfalcon/str-bytes-typesDamien George
2014-03-22py: Make 'bytes' be a proper type, support standard constructor args.Paul Sokolovsky
2014-03-22py: Make 'str' be a proper type, support standard constructor args.Paul Sokolovsky
2014-03-22objstr: Switch from in-object string data to ptr to separate memory area.Paul Sokolovsky
2014-03-22objint_longlong: Add regression test for improper inplace op implementation.Paul Sokolovsky
2014-03-21Disable some math functions until they work correctly.Damien George
2014-03-21py: Put back proper ValueError for badly parsed integers.Damien George
2014-03-21py: Make str.[r]partition more efficient.Damien George
2014-03-21Merge pull request #351 from xbe/str-partitionDamien George