summaryrefslogtreecommitdiff
path: root/tests/basics
AgeCommit message (Expand)Author
2019-10-14Support __bytesScott Shawcroft
2019-05-12use approx of original @godlygeek code for smallints; add testsDan Halbert
2019-05-09Add tests for overflows converting ints to bytesMatt Wozniski
2018-07-11WIP: after merge; before testingDan Halbert
2018-06-12py/lexer: Add support for underscores in numeric literals.Damien George
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-15Merge pull request #837 from godlygeek/human_readable_oserrorDan Halbert
2018-05-14Update errno tests to match new expected behaviorMatt Wozniski
2018-05-14Updated tests; removed try/catch for ucollectionsbildzeitung
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-04-01Merge pull request #734 from jepler/str-find-backwards-circuitpythonScott Shawcroft
2018-04-01py/objgenerator: Check stack before resuming a generatorJeff Epler
2018-03-31py/objstr: Don't crash when end < startJeff Epler
2018-03-31Merge pull request #728 from jepler/double-splat-crash-circuitpythonScott Shawcroft
2018-03-31py/bc: Turn assertion error into exceptionJeff Epler
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-29Fix assertion failures in super_attrJeff Epler
2018-03-29Fix assertion failures in mp_obj_new_typeJeff Epler
2018-03-29Fix assertion failure in mpz_divmod_inplJeff Epler
2018-03-26Merge pull request #709 from jepler/core-class-superpropertyScott Shawcroft
2018-03-26This test now passes, make it run regularlyJeff Epler
2018-03-26Conditionally compile out nonstandard array/struct typecodesJeff Epler
2018-03-23Implement * and *= for array.arrayJeff Epler
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