aboutsummaryrefslogtreecommitdiff
path: root/tests/basics
AgeCommit message (Expand)Author
2019-10-22tests: Rename "array" module to "uarray".Damien George
2019-10-18py/objtype: Add type.__bases__ attribute.Josh Lloyd
2019-10-04tests/basics: Add test for throw into yield-from with normal return.Damien George
2019-10-04py/runtime: Fix PEP479 behaviour throwing StopIteration into yield from.Damien George
2019-10-04py/vm: Fix handling of unwind jump out of active finally.Damien George
2019-10-01tests/basics: Add test for getting name of func with closed over locals.Damien George
2019-09-26tests/basics: Add test for matmul operator.Damien George
2019-09-02py/bc: Fix size calculation of UNWIND_JUMP opcode in mp_opcode_format.Damien George
2019-09-02py/modstruct: Fix struct.pack_into with unaligned offset of native type.Damien George
2019-09-02py/modstruct: Fix struct.unpack with unaligned offset of native type.Tom McDermott
2019-08-15py/objarray: Fix amount of free space in array when doing slice assign.Damien George
2019-07-31tests: Add tests for overriding builtins.__import__.Damien George
2019-05-21py/objarray: Add decode method to bytearray.stijn
2019-05-14tests/basics: Add coverage tests for memoryview attributes.Damien George
2019-05-14py/objarray: Add support for memoryview.itemsize attribute.stijn
2019-05-09py/objgenerator: Fix handling of None passed as 2nd arg to throw().Damien George
2019-05-03tests/basics/sys1.py: Add test for calling sys.exit() without any args.Damien George
2019-04-28tests: Skip tests needing machine module if (u)machine doesn't exist.Damien George
2019-03-05py: Fix VM crash with unwinding jump out of a finally block.Damien George
2019-02-26py/compile: Fix handling of unwinding BaseException in async with.Damien George
2019-02-21tests/basics: Add tests for try-except-else and try-except-else-finally.Damien George
2019-01-27py: Add optional support for 2-argument version of built-in next().stijn
2018-12-13tests/basics/special_methods2: Typo fix in comment.Paul Sokolovsky
2018-12-07tests/basics/special_methods: Add testcases for __int__.Paul Sokolovsky
2018-12-06py/objboundmeth: Support loading generic attrs from the method.Damien George
2018-10-28py/compile: Fix case of eager implicit conversion of local to nonlocal.Damien George
2018-10-22tests: Make bytes/str.count() tests skippable.Paul Sokolovsky
2018-10-18tests/basics/class_getattr: Remove invalid test for __getattribute__.Damien George
2018-10-18py/objtype: Remove comment about catching exc from user __getattr__.Damien George
2018-09-28py/objtype: Support full object model for get/set/delitem special meths.Damien George
2018-09-28py/vm: Fix case of throwing GeneratorExit type into yield-from.Damien George
2018-09-28tests/basics: Split out gen throw tests from yield-from-throw tests.Damien George
2018-09-27py/objgenerator: Remove TODO about returning gen being called again.Damien George
2018-09-20py/objgenerator: Implement PEP479, StopIteration convs to RuntimeError.Damien George
2018-09-11py/emitnative: Fix try-finally in outer scope, so finally is cancelled.Damien George
2018-09-11py/objarray: bytearray: Allow 2nd/3rd arg to constructor.Paul Sokolovsky
2018-09-04tests/basics: Add test cases for context manager raising in enter/exit.Damien George
2018-09-04tests/basics: Add more tests for return within try-finally.Damien George
2018-09-03py/emitnative: Cancel caught exception once handled to prevent reraise.Damien George
2018-09-03py/vm: Fix handling of finally-return with complex nested finallys.Damien George
2018-08-17tests/basics: Provide .exp files for generator tests that fail PEP479.Damien George
2018-08-17tests: Modify tests that print repr of an exception with 1 arg.Damien George
2018-08-17tests/basics/int_big_error.py: Use bytearray to test for int overflow.Damien George
2018-08-17tests/basics/set_pop.py: Sort set before printing for consistent output.Damien George
2018-08-04tests: Make tests work on targets without float support.Ayke van Laethem
2018-07-10py/objgenerator: Implement __name__ with normal fun attr accessor code.Damien George
2018-06-27py/compile: Handle return/break/continue correctly in async with.Damien George
2018-06-27tests: Move non-filesystem io tests to basics dir with io_ prefix.Damien George
2018-06-27tests/basics/namedtuple*: Import ucollections first.Paul Sokolovsky
2018-06-12py/lexer: Add support for underscores in numeric literals.Damien George