aboutsummaryrefslogtreecommitdiff
path: root/tests/basics
AgeCommit message (Expand)Author
2021-04-23py/objexcept: Support errno attribute on OSError exceptions.Damien George
2021-02-08py/mpz: Fix overflow of borrow in mpn_div.Damien George
2021-01-29py/objfun: Support fun.__globals__ attribute.Damien George
2020-11-11py/mpz: Do sign extension in mpz_as_bytes for negative values.Damien George
2020-10-10py/objtype: Handle __dict__ attribute when type has no locals.Jim Mussared
2020-09-25tests/run-tests: Use -BS flags when running CPython.Damien George
2020-09-18tests/basics: Add test for MICROPY_PY_ALL_INPLACE_SPECIAL_METHODS ops.Damien George
2020-09-18tests/basics: Enable == and != special-method tests now that they work.Damien George
2020-09-04all: Rename "sys" module to "usys".stijn
2020-08-22py/runtime: Fix builtin compile() in "single" mode so it prints exprs.Damien George
2020-07-25py/compile: Don't await __aiter__ special method in async-for.Jonathan Hogg
2020-07-21py/obj.h: Fix mp_seq_replace_slice_no_grow to use memmove not memcpy.Damien George
2020-07-21tests/basics: Split out memoryview slice-assign tests to separate file.Damien George
2020-06-30py: Rework mp_convert_member_lookup to properly handle built-ins.Damien George
2020-06-24py/objtype: Support passing in an OrderedDict to type() as the locals.Damien George
2020-06-16tests/basics: Add tests for variable annotations.Damien George
2020-06-16tests/basics: Add tests for assignment operator :=.Damien George
2020-06-10py/objtype: Add __dict__ attribute for class objects.Andrew Leech
2020-06-02py/modbuiltins: Fix getattr to work with class raising AttributeError.Damien George
2020-05-03py/parse: Support constant folding of power operator for integers.Damien George
2020-04-27py/objdict: Fix popitem for ordered dicts.Jim Mussared
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