aboutsummaryrefslogtreecommitdiff
path: root/tests/basics
AgeCommit message (Expand)Author
2018-06-08py/objtype: Optimise instance get/set/del by skipping special accessors.Damien George
2018-05-30py/objtype: Fix assertion failures in super_attr by checking type.Jeff Epler
2018-05-30py/objtype: Fix assertion failures in mp_obj_new_type by checking types.Jeff Epler
2018-05-25py/objtype: Remove TODO comment about needing to check for property.Damien George
2018-05-22py/objgenerator: Protect against reentering a generator.Damien George
2018-05-22py/modbuiltins: Add support for rounding integers.Jan Klusacek
2018-05-21tests: Add some tests for bigint hash, float hash and float parsing.Damien George
2018-05-11tests/basics/special_methods2: Enable some additional tests that work.Damien George
2018-05-10py/modbuiltins: Make built-in dir support the __dir__ special method.Damien George
2018-05-10py/modbuiltins: Make built-in hasattr work properly for user types.Damien George
2018-04-05py/objstr: In find/rfind, don't crash when end < start.Jeff Epler
2018-04-05tests/basics/string_compare.py: Add test with string that hashes to 0.Damien George
2018-04-05tests/basics/class_super.py: Add tests for store/delete of super attr.Damien George
2018-04-05tests/basics: Add tests for edge cases of nan-box's 47-bit small int.Damien George
2018-04-04tests/basics: Add test for subclassing an iterable native type.Damien George
2018-04-04tests/basics/int_big1.py: Add test for big int in mp_obj_get_int_maybe.Damien George
2018-04-04tests/basics: Modify int-big tests to prevent constant folding.Damien George
2018-04-04tests/basics/int_big1.py: Add test converting str with non-print chars.Damien George
2018-04-04tests/basics: Add test for use of return within try-except.Damien George
2018-03-30tests/basics/iter1.py: Add more tests for walking a user-defined iter.Damien George
2018-03-30py/runtime: Be sure that non-intercepted thrown object is an exception.Damien George
2018-03-30py/runtime: Check that keys in dicts passed as ** args are strings.Damien George
2018-03-08tests/basics/builtin_enumerate: Add test for many pos args to enumerate.Damien George
2018-02-27tests/basics/gc1: Add test which triggers GC threshold.Damien George
2018-02-27py/vm: Fix case of handling raised StopIteration within yield from.Damien George
2018-02-24tests/basics: Add test for calling a subclass of a native class.Damien George
2018-02-21py/objdeque: Protect against negative maxlen in deque constructor.Damien George
2018-02-21tests/basics: Add tests to improve coverage of py/objdeque.c.Damien George
2018-02-21tests/basics/deque*: Tests for ucollections.deque.Paul Sokolovsky
2018-02-19py/objstr: Protect against creating bytes(n) with n negative.Damien George
2018-02-19py/modbuiltins: Simplify and generalise dir() by probing qstrs.Damien George
2018-02-18py/objdict: Disallow possible modifications to fixed dicts.Mike Wadsten
2018-02-14py/objrange: Implement (in)equality comparison between range objects.Damien George
2018-02-14tests: Rewrite some tests so they can run without needing eval/exec.Damien George
2018-02-14tests: Automatically skip tests that require eval, exec or frozenset.Damien George
2018-02-07tests/basics: Rename remaining tests that are for built-in functions.Damien George
2018-02-07py/objtype: Check and prevent delete/store on a fixed locals map.Damien George
2017-12-20tests/basics/memoryerror: Add test for out-of-memory using realloc.Damien George
2017-12-19tests: Add some more tests to improve coverage of py/parse.c.Damien George
2017-12-19tests/basics/builtin_pow3: Add tests for edge cases of pow3.Damien George
2017-12-19tests/basics/generator_pend_throw: Add test for just-started generator.Damien George
2017-12-19tests/basics: Add more set tests to improve coverage of py/objset.c.Damien George
2017-12-15py/objgenerator: Allow to pend an exception for next execution.Paul Sokolovsky
2017-12-14tests: Add tests to improve coverage of py/objtype.c.Damien George
2017-12-12tests: Fix few test for proper "skipped" detection with qemu-arm's tinytest.Paul Sokolovsky
2017-12-12tests/basics: Add test for overriding a native base-class's init method.Damien George
2017-11-27tests/basics/builtin_locals: Add test for using locals() in class body.Damien George
2017-11-24tests/basics/builtin_range: Add test for corner case of range slicing.Damien George
2017-11-24tests/basics: Add test for containment of a subclass of a native type.Damien George
2017-11-12py/objnamedtuple: Add _asdict function if OrderedDict is supportedstijn