summaryrefslogtreecommitdiff
path: root/tests/basics
AgeCommit message (Expand)Author
2020-03-28tests/basics/dict_pop.py: Remove extra comma in call and fix grammar.David Lechner
2020-03-11py/objstringio: Expose tell() on StringIO and BytesIO objects.Andrew Leech
2020-02-28py/builtinevex: Support passing in a bytearray/buffer to eval/exec.Damien George
2020-02-21tests/basics/array1.py: Add equality testing for array.Jim Mussared
2020-02-21py/objarray: Turn on MP_TYPE_FLAG_EQ_CHECKS_OTHER_TYPE for memoryview.Jim Mussared
2020-02-20tests/basics: Add test for tuple compare with class derived from tuple.Damien George
2020-02-11tests/basics: Add test for equality between tuple and namedtuple.Damien George
2020-02-11tests/basics: Add tests for equality between bool and int/float/complex.Damien George
2020-02-06tests/basics: Move test for "return" outside function to own file.Petr Viktorin
2020-02-04tests: Move CPy diff test to real test now that subclass equality works.Damien George
2020-01-30tests/basics: Expand test cases for equality of subclasses.Nicko van Someren
2020-01-30py: Support non-boolean results for equality and inequality tests.Nicko van Someren
2020-01-27tests: Add tests for generator throw and yield-from with exc handlers.Jim Mussared
2020-01-24tests: Add boolean-as-integer formatting tests for fixed regression.Yonatan Goldschmidt
2019-12-28py/objslice: Add support for indices() method on slice objects.Nicko van Someren
2019-12-27py/objsingleton: Use mp_generic_unary_op for singleton objects.Damien George
2019-12-21py/objobject: Add object.__delattr__ function.Yonatan Goldschmidt
2019-12-21py/objobject: Add object.__setattr__ function.Yonatan Goldschmidt
2019-12-13tests/basics/memoryview_itemsize: Make portable to 32- and 64-bit archs.Damien George
2019-12-13tests: Add .exp files for basics/parser and import/import_override.Damien George
2019-11-04py/modsys: Report .mpy version in sys.implementation.Damien George
2019-11-04py/objgenerator: Allow pend_throw to an unstarted generator.Jim Mussared
2019-10-29tests/basics: Split sys.exit test to separate file so it can be skipped.Damien George
2019-10-29tests/basics: Automatically skip tests that use str/bytes modulo-format.Damien George
2019-10-29tests/basics: Split out specific slice tests to separate files.Damien George
2019-10-29tests/basics: Use bytes not bytearray when checking user buffer proto.Damien George
2019-10-29tests/basics: Split out specific bytearray tests to separate files.Damien George
2019-10-29tests/basics/builtin_dir.py: Look for "version" in dir(sys).Damien George
2019-10-29tests/basics: Use str.format instead of % for formatting messages.Damien George
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