summaryrefslogtreecommitdiff
path: root/tests/basics
AgeCommit message (Expand)Author
2020-10-10update async tests with less upython workaround and more cpython compatibilityKenny
2020-09-12modstruct: Improve compliance with python3Jeff Epler
2020-09-06core: add int.bit_length() when MICROPY_CYPTHON_COMPAT is enabledJeff Epler
2020-07-24py/compile: Don't await __aiter__ special method in async-for.Jonathan Hogg
2020-07-23add coroutine behavior for generatorsKenny
2020-06-03Fix up end of file and trailing whitespace.Diego Elio Pettenò
2020-04-01tests: Add .exp files for basics/parser and import/import_override.Damien George
2020-03-31tests/basics: Provide .exp files for generator tests that fail PEP479.Damien George
2020-03-31tests: Modify tests that print repr of an exception with 1 arg.Damien George
2020-03-31tests/basics/int_big_error.py: Use bytearray to test for int overflow.Damien George
2020-03-31tests/basics/set_pop.py: Sort set before printing for consistent output.Damien George
2020-03-09Update testsJeff Epler
2020-03-09lexer: catch concatenation of f'' and '' stringsJeff Epler
2020-03-09Address dpgeorge feedback - largely simplificationsJosh Klar
2020-03-09py: Implement partial PEP-498 (f-string) supportJosh Klar
2020-02-14Implement to_bytes(..., signed=True)Dan Halbert
2020-01-09Add test for issue #2465 - tuple subsclass subscriptRoy Hooper
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