summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_builtin.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* bpo-41218: Only mark async code with CO_COROUTINE. (#21357)Matthias Bussonnier2020-07-061-0/+19
* bpo-40636: PEP 618: add strict parameter to zip() (GH-20921)Guido van Rossum2020-06-191-0/+150
* bpo-40140: test_builtin.PtyTests registers SIGHUP handler (GH-19314)Victor Stinner2020-04-021-5/+18
* bpo-31160: Fix race condition in test_os.PtyTests (GH-19263)Victor Stinner2020-03-311-2/+9
* bpo-40094: Add test.support.wait_process() (GH-19254)Victor Stinner2020-03-311-1/+2
* bpo-39562: Allow executing asynchronous comprehensions in the asyncio REPL (G...Batuhan Taşkaya2020-03-191-1/+8
* bpo-39965: Correctly raise SyntaxError if await is used outside async functio...Pablo Galindo2020-03-151-0/+38
* bpo-35712: Make using NotImplemented in a boolean context issue a deprecation...MojoVampire2020-03-031-0/+14
* bpo-39200: Correct the error message for min/max builtin function (GH-17814)Dong-hee Na2020-01-101-2/+12
* bpo-38839: Fix some unused functions in tests (GH-17189)Adam Johnson2019-11-191-0/+1
* bpo-38237: Make pow's arguments have more descriptive names and be keyword pa...Ammar Askar2019-09-211-0/+13
* Fix the ImportWarning regarding __spec__ and __package__ being None (GH-16003)Xtreak2019-09-121-3/+4
* bpo-37409: fix relative import with no parent (#14956)Ben Lewis2019-09-111-0/+4
* bpo-36781: Optimize sum() for bools. (#13074)Serhiy Storchaka2019-09-101-0/+21
* bpo-15999: Clean up of handling boolean arguments. (GH-15610)Serhiy Storchaka2019-09-011-3/+3
* bpo-37976: Prevent shadowing of TypeError in zip() (GH-15592)Sergey Fedoseev2019-08-301-0/+12
* bpo-37417: Fix error handling in bytearray.extend. (GH-14407)Brandt Bucher2019-06-261-0/+5
* bpo-36027: Extend three-argument pow to negative second argument (GH-13266)Mark Dickinson2019-06-021-1/+2
* bpo-34616: Fix code style and unbreak buildbots (GH-13473)Yury Selivanov2019-05-211-18/+20
* bpo-34616: Add PyCF_ALLOW_TOP_LEVEL_AWAIT to allow top-level await (GH-13148)Matthias Bussonnier2019-05-211-1/+72