summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics
Commit message (Expand)AuthorAge
* py/emitcommon: Don't implicitly close class vars that are assigned to.Damien George2022-05-03
* py/objtype: Convert result of user __contains__ method to bool.Jon Bjarni Bjarnason2022-04-20
* tests/basics/fun_callstardblstar: Add test for large arg allocation.Damien George2022-04-01
* tests/basics/fun_callstardblstar: Add coverage test.David Lechner2022-03-31
* py/runtime: Allow multiple *args in a function call.David Lechner2022-03-31
* py/runtime: Allow multiple **args in a function call.David Lechner2022-03-31
* py/modsys: Add optional sys.tracebacklimit attribute.Damien George2022-03-10
* tests/basics: Add test for creating small-ints in nan-box builds.Damien George2022-03-07
* py/objstr: Support '{:08}'.format("Jan") like Python 3.10.Jeff Epler2022-01-19
* ports: Move '.frozen' to second entry in sys.path.Damien George2021-12-29
* tests/basics/int_big_cmp.py: Add more tests for big-int comparison.Damien George2021-12-21
* py/mpz: Fix bugs with bitwise of -0 by ensuring all 0's are positive.Damien George2021-12-21
* py/lexer: Support nested [] and {} characters within f-string params.Damien George2021-11-25
* tests/basics: Add tests for type-checking subclassed exc instances.Mike Wadsten2021-10-21
* tests/basics: Split f-string debug printing to separate file with .exp.Damien George2021-08-26
* py: Implement partial PEP-498 (f-string) support.Jim Mussared2021-08-14
* py/runtime: Fix bool unary op for subclasses of native types.Jim Mussared2021-07-23
* py: Support single argument to optimised MP_OBJ_STOP_ITERATION.Damien George2021-07-15
* py/objexcept: Make mp_obj_exception_get_value support subclassed excs.Damien George2021-07-15
* py/objexcept: Pretty print OSError also when it has 2 arguments.David Lechner2021-07-01
* tests/basics: Split out literal tests that raise SyntaxWarning on CPy.Damien George2021-05-30
* py/compile: Raise an error on async with/for outside an async function.Jeff Epler2021-05-30
* py/objarray: Fix constructing a memoryview from a memoryview.Damien George2021-05-18
* py/objarray: Implement more/less comparisons for array.stijn2021-05-13
* py/objarray: Prohibit comparison of mismatching types.stijn2021-05-13
* py/objexcept: Support errno attribute on OSError exceptions.Damien George2021-04-23
* py/mpz: Fix overflow of borrow in mpn_div.Damien George2021-02-08
* py/objfun: Support fun.__globals__ attribute.Damien George2021-01-29
* py/mpz: Do sign extension in mpz_as_bytes for negative values.Damien George2020-11-11
* py/objtype: Handle __dict__ attribute when type has no locals.Jim Mussared2020-10-10
* tests/run-tests: Use -BS flags when running CPython.Damien George2020-09-25
* tests/basics: Add test for MICROPY_PY_ALL_INPLACE_SPECIAL_METHODS ops.Damien George2020-09-18
* tests/basics: Enable == and != special-method tests now that they work.Damien George2020-09-18
* all: Rename "sys" module to "usys".stijn2020-09-04
* py/runtime: Fix builtin compile() in "single" mode so it prints exprs.Damien George2020-08-22
* py/compile: Don't await __aiter__ special method in async-for.Jonathan Hogg2020-07-25
* py/obj.h: Fix mp_seq_replace_slice_no_grow to use memmove not memcpy.Damien George2020-07-21
* tests/basics: Split out memoryview slice-assign tests to separate file.Damien George2020-07-21
* py: Rework mp_convert_member_lookup to properly handle built-ins.Damien George2020-06-30
* py/objtype: Support passing in an OrderedDict to type() as the locals.Damien George2020-06-24
* tests/basics: Add tests for variable annotations.Damien George2020-06-16
* tests/basics: Add tests for assignment operator :=.Damien George2020-06-16
* py/objtype: Add __dict__ attribute for class objects.Andrew Leech2020-06-10
* py/modbuiltins: Fix getattr to work with class raising AttributeError.Damien George2020-06-02
* py/parse: Support constant folding of power operator for integers.Damien George2020-05-03
* py/objdict: Fix popitem for ordered dicts.Jim Mussared2020-04-27
* tests/basics/dict_pop.py: Remove extra comma in call and fix grammar.David Lechner2020-03-28
* py/objstringio: Expose tell() on StringIO and BytesIO objects.Andrew Leech2020-03-11
* py/builtinevex: Support passing in a bytearray/buffer to eval/exec.Damien George2020-02-28
* tests/basics/array1.py: Add equality testing for array.Jim Mussared2020-02-21