summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_builtin.py
Commit message (Expand)AuthorAgeFilesLines
* gh-69639: Add mixed-mode rules for complex arithmetic (C-like) (GH-124829)Sergey B Kirpichev2024-11-261-1/+13
* gh-119793: Add optional length-checking to `map()` (GH-120471)Nice Zombies2024-11-041-0/+105
* GH-125174: Make immortal objects more robust, following design from PEP 683 (...Mark Shannon2024-10-101-2/+2
* gh-123339: Fix cases of inconsistency of __module__ and __firstlineno__ in cl...Serhiy Storchaka2024-09-281-0/+12
* gh-116402: Avoid readline in test_builtin TTY input tests (GH-122447)Łukasz Langa2024-07-301-15/+24
* gh-122234: fix accuracy issues for sum() (#122236)Sergey B Kirpichev2024-07-291-0/+5
* gh-121637: Syntax error for optimized-away incorrect await (#121656)Jelle Zijlstra2024-07-221-25/+45
* gh-121149: improve accuracy of builtin sum() for complex inputs (gh-121176)Sergey B Kirpichev2024-07-051-0/+9
* gh-119057: Use better error messages for zero division (#119066)Nikita Sobolev2024-06-031-0/+10
* gh-118899: Add tests for `NotImplemented` attribute access (#118902)Nikita Sobolev2024-05-121-0/+18
* gh-118767: Improve tests and docs for bool(NotImplemented) (#118813)Jelle Zijlstra2024-05-091-6/+8
* gh-118767: Make bool(NotImplemented) raise TypeError (#118775)Jelle Zijlstra2024-05-081-7/+4
* gh-105879: Add support for keyword arguments to eval and exec (#105885)Raphael Gaschignard2024-05-021-0/+20
* gh-76763: Make chr() always raising ValueError for out-of-range values (GH-11...Serhiy Storchaka2024-02-101-4/+7
* gh-114552: Update `__dir__` method docs: it allows returning an iterable (#11...Nikita Sobolev2024-02-101-0/+8
* gh-113896: Fix test_builtin.BuiltinTest.test___ne__() (#113897)Kirill Podoprigora2024-01-101-2/+2
* gh-112716: Fix SystemError when __builtins__ is not a dict (GH-112770)Serhiy Storchaka2023-12-141-0/+26
* gh-112125: Fix None.__ne__(None) returning NotImplemented instead of False (#...andrewluotechnologies2023-12-071-0/+5
* gh-74616: Raise ValueError in case of null character in input prompt (GH-1738)Kushal Das2023-12-071-9/+35
* gh-112625: Protect bytearray from being freed by misbehaving iterator inside ...chilaxan2023-12-041-0/+17
* gh-110393: Remove watchdog with hardcoded timeout (#110400)Victor Stinner2023-10-051-2/+0
* gh-108416: Mark slow test methods with @requires_resource('cpu') (GH-108421)Serhiy Storchaka2023-09-021-0/+1
* gh-108113: Make it possible to optimize an AST (#108282)Irit Katriel2023-08-231-5/+7
* gh-108113: Make it possible to create an optimized AST (#108154)Irit Katriel2023-08-211-9/+32
* gh-81005: Refactor str tests to reflect that str and unicode are merged in Py...Daniel Fortunov2023-05-231-1/+1
* gh-104600: Make type.__type_params__ writable (#104634)Jelle Zijlstra2023-05-191-0/+12
* GH-104142: Fix _Py_RefcntAdd to respect immortality (GH-104143)Brandt Bucher2023-05-051-18/+25
* gh-84436: Implement Immortal Objects (gh-19474)Eddie Elizondo2023-04-221-1/+23
* gh-102356: Add thrashcan macros to filter object dealloc (#102426)Marta Gómez Macías2023-03-051-0/+10
* GH-90829: Fix empty iterable error message in min/max (#31181)Nnarol2023-01-081-2/+10
* GH-100425: Improve accuracy of builtin sum() for float inputs (GH-100426)Raymond Hettinger2022-12-231-0/+18
* gh-99124: use concrete exception types in `test_builtin` (#99125)Nikita Sobolev2022-11-081-3/+3
* gh-94808: Cover `LOAD_GLOBAL` for custom dict subtypes (GH-96767)Nikita Sobolev2022-11-041-0/+31
* gh-96670: Raise SyntaxError when parsing NULL bytes (#97594)Pablo Galindo Salgado2022-09-271-2/+1
* gh-96197: Add `del sys.breakpointhook` behavior test (gh-96198)Jeong YunWon2022-08-231-0/+5
* GH-94808: Test __build_class__ inside non-dict __builtins__ (GH-95932)Michael Droettboom2022-08-151-5/+9
* gh-93124: Fix typos in comments (GH-93125)Akuli2022-05-251-1/+1
* gh-90473: Increase stack size, disable obmalloc on WASI (GH-92732)Christian Heimes2022-05-131-1/+4
* gh-92203: Add closure support to exec(). (#92204)larryhastings2022-05-061-1/+79
* gh-91156: Use `locale.getencoding()` instead of getpreferredencoding (GH-91732)Inada Naoki2022-04-221-1/+1
* bpo-40280: Address more test failures on Emscripten (GH-31050)Christian Heimes2022-02-051-0/+2
* bpo-44024: Improve the TypeError message in getattr and hasattr (GH-25863)Géry Ogam2022-01-181-4/+14
* bpo-46411: Remove unnecessary calls to sys.exc_info() in tests (GH-30638)Irit Katriel2022-01-181-2/+2
* bpo-13886: Skip PTY non-ASCII tests if readline is loaded (GH-30631)Victor Stinner2022-01-171-2/+14
* bpo-45346: Keep docs consistent regarding true and false values (GH-28697)Raymond Hettinger2021-10-021-1/+1
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25142)Inada Naoki2021-04-021-6/+8
* bpo-40636: Remove overly-strict zip pickling tests (GH-24109)Brandt Bucher2021-01-051-42/+0
* bpo-42536: GC track recycled tuples (GH-23623)Brandt Bucher2020-12-051-0/+13
* bpo-40275: Use new test.support helper submodules in tests (GH-21449)Hai Shi2020-08-031-3/+3
* bpo-41218: Improve the test cases for test_compile_top_level_await_no_coro (G...Pablo Galindo2020-07-061-3/+5