aboutsummaryrefslogtreecommitdiff
path: root/tests/basics
AgeCommit message (Expand)Author
2017-10-04py/objstr: Make empty bytes object have a null-terminating byte.Damien George
2017-10-03py/objset: Include the failed key in a KeyError raised from set.remove.Damien George
2017-10-03py/objset: Check that RHS of a binary op is a set/frozenset.Damien George
2017-09-19py/objstr: strip: Don't strip "\0" by default.Paul Sokolovsky
2017-09-10tests/class_reverse_op: Test for reverse arith ops special methods.Paul Sokolovsky
2017-09-07py/objlist: Properly implement comparison with incompatible types.Paul Sokolovsky
2017-09-06py/objtuple: Properly implement comparison with incompatible types.Paul Sokolovsky
2017-09-04tests/class_inplace_op: Test for inplace op fallback to normal one.Paul Sokolovsky
2017-09-01py/modstruct: Check and prevent buffer-write overflow in struct packing.Damien George
2017-09-01py/modstruct: Check and prevent buffer-read overflow in struct unpackingDamien George
2017-09-01py/modstruct: In struct.pack, stop converting if there are no args left.Damien George
2017-09-01tests/class_new: Add another testcase for __new__/__init__ interaction.Paul Sokolovsky
2017-08-30tests/class_new: Add checks for __init__ being called and other improvements.Paul Sokolovsky
2017-08-30tests/object_new: Better messages, check user __new__() method.Paul Sokolovsky
2017-08-30py/objtype: Handle NotImplemented return from binary special methods.Paul Sokolovsky
2017-08-29py/objstr: startswith, endswith: Check arg to be a string.Paul Sokolovsky
2017-08-17py/binary: Change internal bytearray typecode from 0 to 1.Damien George
2017-08-15py/binary.c: Fix bug when packing big-endian 'Q' values.Bas van Sisseren
2017-08-09py/objstr: Raise an exception for wrong type on RHS of str binary op.Damien George
2017-08-09py/objtuple: Allow to use inplace-multiplication operator on tuples.Damien George
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
2017-07-21tests/basics/builtin_exec: Test various globals/locals args to exec().Tom Collins
2017-07-21tests: Rename exec1.py to builtin_exec.py.Damien George
2017-07-07py/objgenerator: Allow to hash generators and generator instances.Damien George
2017-07-05tests/basics: Add tests for arithmetic operators precedence.Krzysztof Blazewicz
2017-06-29tests/basics/namedtuple1: Add test for creating with pos and kw args.Damien George
2017-06-22tests/basics: Add tests for for-else statement.Damien George
2017-06-15py/objint: In to_bytes(), allow length arg to be any int and check sign.Damien George
2017-06-15py/objint: Support "big" byte-order in int.to_bytes().Damien George
2017-06-14py/compile: Raise SyntaxError if positional args are given after */**.Damien George
2017-06-10tests/basics: Convert "sys.exit()" to "raise SystemExit".Paul Sokolovsky
2017-06-02tests/basics/string_rsplit: Add tests for negative "maxsplit" argument.Damien George
2017-05-29various: Spelling fixesVille Skyttä
2017-05-25tests/basics: Add more tests for unwind jumps from within a try-finally.Damien George
2017-05-18tests/basics/builtin_range: Add tests for negative slicing of range.Damien George
2017-05-18tests/basics/list_slice_3arg: Add more tests for negative slicing.Damien George
2017-05-12tests/basics/lexer: Add line continuation tests for lexer.Tom Collins
2017-05-09tests/basics/lexer: Add lexer tests for input starting with newlines.Tom Collins
2017-05-09tests/basics: Add memoryview test for big ints.Damien George
2017-05-09tests/basics: Update array test for big-int with lL typecodes.Damien George
2017-05-06tests: Move super-as-local test from cpydiff to basic tests.Damien George
2017-04-25tests/basics: Add tests for int.from_bytes when src has trailing zeros.Damien George
2017-04-22tests: Add tests for calling super and loading a method directly.Damien George
2017-04-05tests/basics: Add test for tuple inplace add.Damien George
2017-04-05tests/basics: Add tests for raising ValueError when range() gets 0 step.Damien George
2017-04-02tests/basics: Add tests for list and bytearray growing using themselves.Damien George
2017-03-27tests/basics: Add test for super() when self is closed over.Damien George
2017-03-16tests/basics/bytes_add: Add tests for optimised bytes addition.Damien George
2017-03-15tests/basics: Move string-modulo-format int tests to dedicated file.Damien George
2017-03-15tests/basics: Add test for string module formatting with int argument.Damien George