aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2014-03-26stmhal: Remove ExtiMeta object and clean up class constants.Damien George
2014-03-26py: Fix logic bugs in object attribute/method extraction.Damien George
2014-03-26py: Improved builtin dir.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-26py: Swap around the double return value of mp_obj_gen_resume.Damien George
2014-03-26py: Replace mp_const_stop_iteration object with MP_OBJ_NULL.Damien George
2014-03-26Merge pull request #379 from pfalcon/reraiseDamien George
2014-03-26Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-03-26py: Use _is_subclass_fast instead of _exception_match.Damien George
2014-03-26Merge branch 'gen-close-ret-val' of github.com:pfalcon/micropython into pfalc...Damien George
2014-03-26py: Add support for user-defined iterators via __iter__, __next__.Damien George
2014-03-26objexcept: Add mp_obj_exception_get_value() convenience function.Paul Sokolovsky
2014-03-26vm: Implement raise statement w/o args (reraising last exception).Paul Sokolovsky
2014-03-26objgenerator: Implement return with value and .close() method.Paul Sokolovsky
2014-03-25stmhal: Change Usart creation function to class make_new.Damien George
2014-03-25stmhal: Shuffle around some init functions in main().Damien George
2014-03-25stmhal: Add I2C support; change accel driver to use new I2C.Damien George
2014-03-25Merge pull request #370 from xbe/str-rfindDamien George
2014-03-25py: Replace naive and teribble hash function with djb2.Damien George
2014-03-25py: Removed some unnecessary exception objects.Damien George
2014-03-25Proper support for registering builtin modules in ROM.Damien George
2014-03-25Merge pull request #373 from iabdalkader/module_registerDamien George
2014-03-25Merge pull request #375 from dhylands/stmhal-adcDamien George
2014-03-24Fix netduino to buildDave Hylands
2014-03-25objexcept: Add "args" exception attribute, as well as StopIteration.value.Paul Sokolovsky
2014-03-25rt_load_method(): Add missing qstr_str() when getting type name.Paul Sokolovsky
2014-03-25Add mp_obj_module_registermux
2014-03-24stmhal: Make pyb.ADC the ADC class (not a function).Damien George
2014-03-24stmhal - fixed up adc stuffDave Hylands
2014-03-24stmhal: Add comment to DAC driver for function to implement.Damien George
2014-03-24stmhal: Add DAC driver.Damien George
2014-03-24Update README.Damien George
2014-03-24Add tools/pyboard.py, a simple module to communicate with the pyboard.Damien George
2014-03-24stmhal: Improve REPL CTRL commands.Damien George
2014-03-24stmhal: Fix bug with USB CDC transmit buffer wrap around.Damien George
2014-03-24Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-03-24stmhal: Make Led, Servo and Accel their class, not a function.Damien George
2014-03-24stmhal: Update help function.Damien George
2014-03-24py: Remove obsolete declarations; make mp_obj_get_array consistent.Damien George
2014-03-24Implement str.rfind() and add tests for it.xbe
2014-03-23py/objstr.c: Remove done TODOs.xbe
2014-03-24Merge pull request #367 from pfalcon/del-nameDamien George
2014-03-23py: Implement support for "except Exception as var" clause.Paul Sokolovsky
2014-03-23runtime: RT_BINARY_OP_EXCEPTION_MATCH: don't fall thru in case of wrong types.Paul Sokolovsky
2014-03-23vm: Abstract working with tagged pointers in VM using macro accessors.Paul Sokolovsky
2014-03-23stmhal: Fix issues with USB CDC init and receive.Damien George
2014-03-23stmhal: Improved interface to accelerometer.Damien George
2014-03-23stmhal: Remove servo LED debugging.Damien George
2014-03-23stm/stmhal: Change gammaf to tgammaf.Damien George