aboutsummaryrefslogtreecommitdiff
path: root/tests/basics
AgeCommit message (Expand)Author
2016-06-12tests: Add testcase for OrderedDict equality.Mark Anthony Palomer
2016-05-28py/modstruct: Allow to have "0s" in struct format.Damien George
2016-05-23py/objnamedtuple: Allow passing field names as a tuple.Antonin ENFRUN
2016-05-22tests: Add testcase for str.center().Paul Sokolovsky
2016-05-14tests/struct1: Add testcase for an unknown type char.Paul Sokolovsky
2016-05-13tests/basics/string_splitlines: Reinstate feature test for splitlines.Damien George
2016-05-13py/objstr: Make dedicated splitlines function, supporting diff newlines.Damien George
2016-05-08py/mpz: Do Python style division/modulo within bignum divmod routine.Damien George
2016-05-08py/mpz: Fix bug with overflowing C-shift in division routine.Damien George
2016-05-07tests: Disable memoryview tests that overflow int conversion.Damien George
2016-05-07py/runtime: Properly handle passing user mappings to ** keyword args.Damien George
2016-05-07py/objstr: Binary type of str/bytes for buffer protocol is 'B'.Damien George
2016-05-02tests: Update for _io/_collections module having been renamed.Paul Sokolovsky
2016-04-28tests: Add testcase for yielding from a stopped generator.Paul Sokolovsky
2016-04-21py: Fix bug passing a string as a keyword arg in a dict.Damien George
2016-04-15tests: Fix dict1.py so it doesn't rely on the order of dict elems.Damien George
2016-04-13tests: Add .exp files for async tests, so they can run with Python 3.4.Damien George
2016-04-13tests: Add 6 tests for async await/for/with.Damien George
2016-04-07py/objarray: Fix array.append so it doesn't extend if append fails.Damien George
2016-03-15tests: Split large tests into smaller files, to run with a small heap.Damien George
2016-03-14py/objarray: Fix array slice assignment when array is reallocated.Damien George
2016-03-06tests: Remove commented out tests so test script is not too big.Damien George
2016-03-06tests: Reduce large object allocations so tests can run with small heap.Damien George
2016-02-14tests/bytearray1: Add testcases for "in" operator.Paul Sokolovsky
2016-02-03py/mpz: Complete implementation of mpz_{and,or,xor} for negative args.Doug Currie
2016-02-02py/objstr: For str.format, add nested/computed fields support.pohmelie
2016-02-01py/vm: Fix popping of exception block in UNWIND_JUMP opcode.Damien George
2016-01-19py: Add ustruct.pack_into and unpack_fromDave Hylands
2016-01-14builtin property: accept keyword argumentschrysn
2016-01-14tests: Remove builtin_dict teststijn
2016-01-04py/objstr: In str.format, handle case of no format spec for string arg.Damien George
2016-01-03tests/object_dict.py: Add test for obj.__dict__ .Paul Sokolovsky
2016-01-03py: Implement __dict__ for instances.stijn
2016-01-03py: Make dir report instance membersDave Hylands
2015-12-26py: Be more restrictive binding self when looking up instance attrs.Damien George
2015-12-24py: Handle case of return within the finally block of try-finally.Damien George
2015-12-20tests: Add tests for %-formatting of bytes.Paul Sokolovsky
2015-12-12py: Fix compiler to handle lambdas used as default arguments.Damien George
2015-12-10tests: Add test for "not" of a user defined class.Damien George
2015-12-09py: Fix calling of parent classmethod from instance of subclass.Damien George
2015-12-08py: Don't try to optimise for+range when args are not simple expressions.Damien George
2015-12-07tests/builtin_minmax: Make compatible with @native codegen.Paul Sokolovsky
2015-12-07tests/builtin_minmax: Add testcase for lazy iterable (generator).Paul Sokolovsky
2015-12-07tests: Add min/max "default" agrument testpohmelie
2015-12-03py: Fix function calls that have positional and a star-arg-with-iterator.Damien George
2015-11-23py/compile: Do proper checking of * and ** in function definition.Damien George
2015-11-23py: Check that second argument to hasattr is actually a string.Damien George
2015-11-22tests/int_big_*: Add more tests for result normalization.Paul Sokolovsky
2015-11-22tests/int_big_xor: Test that xor result is normalized.Paul Sokolovsky
2015-11-17py: Implement default and star args for lambdas.Damien George