aboutsummaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Expand)Author
2014-01-31Merge branch 'master' of github.com:xbe/micropython into xbe-masterDamien George
2014-01-31Typo fixes in comments.Paul Sokolovsky
2014-01-31Add testcase with exception handler spread across functions.Paul Sokolovsky
2014-01-30Implement str.replace and add tests for it.xbe
2014-01-30Add tests for str.stripxbe
2014-01-30vm: Add basic implementation of END_FINALLY opcode.Paul Sokolovsky
2014-01-30py: Improve __bool__ and __len__ dispatch; add slots for them.Damien George
2014-01-30Implement __bool__ and __len__ via unary_op virtual method for all types.Paul Sokolovsky
2014-01-29run-tests can handle segfault.Damien George
2014-01-29Merge branch 'master' of github.com:msiemens/micropython into msiemens-masterDamien George
2014-01-28Rename array test to array1 so it doesn't clash with array module.Damien George
2014-01-28Added Windows port (see #233)Markus Siemens
2014-01-28bytearray: Print objects properly.Paul Sokolovsky
2014-01-28Add basic array.array test.Paul Sokolovsky
2014-01-27Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-01-27py: Add unary op not for NoneType, bool, tuple, list, dict; fix for int.Damien George
2014-01-27long int: Implement more operations.Paul Sokolovsky
2014-01-27gen.send(): Throw StopIteration. Also, explicitly shutdown finished gen.Paul Sokolovsky
2014-01-26Implement send() method for generators.Paul Sokolovsky
2014-01-25py: Implement iterator support for object that has __getitem__.Damien George
2014-01-24Add basic implementation of bytes type, piggybacking on str.Paul Sokolovsky
2014-01-23mp_obj_is_callable(): Only object types can be callable.Paul Sokolovsky
2014-01-23Implement simplest case of str.startswith().Paul Sokolovsky
2014-01-22Implement octal and hex escapes in strings.Paul Sokolovsky
2014-01-21py: Implement break and continue byte codes, and add tests.Damien George
2014-01-21Add bytearray basic tests.Paul Sokolovsky
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-20unix io.FileIO: Add iteration support.Paul Sokolovsky
2014-01-20Rename unix binary to 'micropython'.Damien George
2014-01-20unix: Implement sys.argv.Paul Sokolovsky
2014-01-19Add README for tests/.Paul Sokolovsky
2014-01-19Add directory for I/O tests with basic test for file methods.Paul Sokolovsky
2014-01-19Move tests in basic/tests/ up one level preparating to multiple test dirs.Paul Sokolovsky
2014-01-19Tiny optimisation in objlist.c; a new test for inheritance.Damien George
2014-01-18Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-01-18Improve method lookup in mp_obj_class_lookup.Damien George
2014-01-18Add testcase for subclassing builtin type and calling native method (broken).Paul Sokolovsky
2014-01-18Implement framework for class-defined built-in operators.Damien George
2014-01-16Add empty (false) value testing for strings, tuples, lists, dicts.Paul Sokolovsky
2014-01-16str.format: Don't assume that '}' immediately follows '{', skip insides.Paul Sokolovsky
2014-01-15Merge branch 'str2int' of github.com:xyb/micropython into xyb-str2intDamien George
2014-01-15Merge branch 'str-repr' of github.com:pfalcon/micropython into pfalcon-str-reprDamien George
2014-01-15Merge branch 'builtins' of github.com:chipaca/micropython into chipaca-builtinsDamien George
2014-01-15Implement eval.Damien George
2014-01-15Implement repr.Damien George
2014-01-15add more tests and remove debug codexyb
2014-01-15int() test passedxyb