aboutsummaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Expand)Author
2014-05-12modstruct: Implement count specifier for strings (e.g. "100s").Paul Sokolovsky
2014-05-11objstr: Slice indexing: support bytes properly.Paul Sokolovsky
2014-05-11objstr: Make .split() support bytes.Paul Sokolovsky
2014-05-11objstr: Make .join() support bytes.Paul Sokolovsky
2014-05-11py: Add basic implementation of hasattr() function.Paul Sokolovsky
2014-05-11py: frozenset() creates an empty frozenset.Damien George
2014-05-11Merge pull request #603 from stinos/windows-tests-newlineDamien George
2014-05-11py: Give up and make mp_obj_str_get_data() deal with bytes too.Paul Sokolovsky
2014-05-11tests: Fix handling of newlines from expected output filesstijn
2014-05-11objstr: Make *strip() accept bytes.Paul Sokolovsky
2014-05-11tests: Really fix import.Paul Sokolovsky
2014-05-11tests: Fix import.Paul Sokolovsky
2014-05-11objtuple: Go out of the way to support comparison of subclasses.Paul Sokolovsky
2014-05-11py: Don't try to "bind" types store as attributes of objects.Paul Sokolovsky
2014-05-11objstr: Make .[r]partition() work with bytes.Paul Sokolovsky
2014-05-10objlist: Support list slice deletion.Paul Sokolovsky
2014-05-10objlist: Implement non-growing slice assignment.Paul Sokolovsky
2014-05-10objtype: Implement ->getiter() method for instances.Paul Sokolovsky
2014-05-10objnamedtuple: Support iteration.Paul Sokolovsky
2014-05-10objstr: Implement .lower() and .upper().Paul Sokolovsky
2014-05-10objset: Add frozenset tests, skippable if frozenset not available.Paul Sokolovsky
2014-05-10run-tests: Add support for skipping tests.Paul Sokolovsky
2014-05-10objtype: Don't treat inheritance from "object" as from native type.Paul Sokolovsky
2014-05-10stmhal: Fix setting of RTC: was BCD now BIN encoded.Damien George
2014-05-10py: Fix base "detection" for int('0<hexdigit>', 16).Paul Sokolovsky
2014-05-10bytes: Implement comparison and other binary operations.Paul Sokolovsky
2014-05-08py, compiler: Add basic support for A=const(123).Damien George
2014-05-07py: Fix stack access in thumb native emitter.Damien George
2014-05-07tests/bench: Add testcase for positional/kwargs to enumerate().Paul Sokolovsky
2014-05-07tests/bench: Add tests for various ways to pass function args.Paul Sokolovsky
2014-05-07tests/bench: Add variation on loop_count/while_down_ne test.Paul Sokolovsky
2014-05-07tests/bench: Add testcases for lookup in 5-el instance and namedtuple.Paul Sokolovsky
2014-05-07tests/bench: Time namedtuple field access.Paul Sokolovsky
2014-05-07tests: Add a test for native code on pyboard.Damien George
2014-05-07tests: Add inline assembler test for pyboard.Damien George
2014-05-06py: Add keyword arg support to enumerate constructor.Damien George
2014-05-05tests/bench/var: Add tests for class/instance var access.Paul Sokolovsky
2014-05-05tests: Add framework for comparative benchmarking.Paul Sokolovsky
2014-05-04tests, pyb: Add 'import pyb' when needed.Damien George
2014-05-03py, stream: Implement readlines for a stream.Damien George
2014-05-03tests: Add a suite of tests specifically for the pyboard.Damien George
2014-05-02tests: Add testcases for catching user Exception subclasses.Paul Sokolovsky
2014-05-02objtype: .print() Exception instances in adhoc way.Paul Sokolovsky
2014-05-01Fix the builtin min() and max() functions (and add tests).Andrew Scheller
2014-04-30tests: Add test for calling inherited native method on subclass.Paul Sokolovsky
2014-04-29tests: Add test for accessing attribute of inherited native type.Paul Sokolovsky
2014-04-29tests: Add basic tests for subclassing native types and using special methods.Paul Sokolovsky
2014-04-28py: Fix bug in map lookup of interned string vs non-interned.Damien George
2014-04-27py: Implement keyword-only args.Damien George
2014-04-26modio: Implement io.StringIO class.Paul Sokolovsky