summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* gh-99688: Fix outdated tests in test_unary (#99712)Yesung(Isaac) Lee2022-12-111-6/+3
* gh-88500: Reduce memory use of `urllib.unquote` (#96763)Gregory P. Smith2022-12-112-11/+21
* gh-99941: Ensure that asyncio.Protocol.data_received receives immutable bytes...DarioDaF2022-12-103-4/+8
* Fix potential flakiness in `test_run_until_complete_baseexception` (#100148)Fantix King2022-12-101-1/+1
* bpo-44512: Fix handling of extrasactions arg to csv.DictWriter with mixed or ...andrei kulakov2022-12-092-1/+10
* bpo-43984: Allow winreg.SetValueEx to set -1 without treating it as an error ...Shreyan Avigyan2022-12-091-1/+17
* GH-100110: Specialize FOR_ITER for tuples (GH-100109)Ken Jin2022-12-091-0/+1
* GH-100113: remove remaining `yield from` usage from `asyncio` tests (#100114)Kumar Aditya2022-12-091-2/+2
* gh-81057: Move OS-Related Globals to _PyRuntimeState (gh-100082)Eric Snow2022-12-081-6/+7
* GH-98363: Have batched() return tuples (GH-100118)Raymond Hettinger2022-12-081-8/+8
* test_ast uses infinite_recursion() to prevent crash (#100104)Victor Stinner2022-12-081-1/+2
* Fix `test_run_until_complete_baseexception` test to check for `KeyboardInterr...Fantix King2022-12-081-8/+3
* gh-100098: [Enum] insist on actual tuples, no subclasses, for auto (GH-100099)Ethan Furman2022-12-082-1/+16
* gh-92120: The docstring of enum.Enum is invalid in reST (GH-92122)Takeshi KOMIYA2022-12-081-7/+7
* gh-98778: Update HTTPError to initialize properly even if fp is None (gh-99966)Dong-hee Na2022-12-082-7/+8
* gh-100086: Add build info to test.libregrtest (#100093)Victor Stinner2022-12-082-1/+88
* gh-100077: make test_code.test_invalid_bytecode more robust and maintainable ...Irit Katriel2022-12-071-8/+12
* gh-83035: handle decorator with nested parens in inspect.getsource (#99654)Carl Meyer2022-12-073-9/+21
* gh-93018: Fix for the compatibility problems with expat (gh-93900)Matěj Cepl2022-12-071-15/+9
* [Enum] Remove unused code from `test_enum.py` (GH-96986)Nikita Sobolev2022-12-071-14/+0
* gh-100050: Fix an assertion error when raising unclosed parenthesis errors in...Pablo Galindo Salgado2022-12-061-0/+16
* gh-94943: [Enum] improve repr() when inheriting from a dataclass (GH-99740)Ethan Furman2022-12-062-4/+70
* Python 3.12.0a3v3.12.0a3Thomas Wouters2022-12-061-7/+8
* gh-93453: No longer create an event loop in get_event_loop() (#98440)Serhiy Storchaka2022-12-0611-154/+73
* GH-99729: Unlink frames before clearing them (GH-100030)Brandt Bucher2022-12-061-0/+42
* gh-99957: Add `frozen_default` parameter on `dataclass_transform` (#99958)Erik De Bonte2022-12-062-1/+8
* gh-100001: Also escape \s in http.server log messages. (#100038)Gregory P. Smith2022-12-052-0/+3
* gh-100001: Omit control characters in http.server stderr logs. (#100002)Gregory P. Smith2022-12-052-2/+30
* gh-99741: Implement Multi-Phase Init for the _xxsubinterpreters Module (gh-99...Eric Snow2022-12-051-1/+10
* bpo-44817: Ignore additional errors in ntpath.realpath (GH-27574)Michael Förderer2022-12-051-1/+4
* gh-60203: Revert changes in cycle.__setstate__ (#99982)Serhiy Storchaka2022-12-051-0/+36
* gh-99892: test_unicodedata: skip test on download failure (#100011)Victor Stinner2022-12-051-3/+4
* gh-100005: Skip test_script_as_dev_fd() on FreeBSD (#100006)Victor Stinner2022-12-052-1/+4
* gh-98248: Normalizing the error messages in function struct.pack (GH-98252)Felix Ye2022-12-041-15/+48
* gh-98458: unittest: bugfix for infinite loop while handling chained exception...AlexTate2022-12-042-1/+59
* GH-91054: Reset static events counts in code watchers tests (#99978)Itamar Ostricher2022-12-041-3/+3
* gh-60203: Always pass True/False as boolean arguments in tests (GH-99983)Serhiy Storchaka2022-12-045-8/+9
* bpo-15999: Accept arbitrary values for boolean parameters. (#15609)Serhiy Storchaka2022-12-032-10/+0
* gh-99934: test_marshal.py: add more elements in test_deterministic_sets (GH-9...Alexander Kanavin2022-12-031-1/+1
* GH-66285: remove redundant `time.sleep` from `test_fork_signal_handling` (GH-...Kumar Aditya2022-12-031-1/+0
* gh-99741: Clean Up the _xxsubinterpreters Module (gh-99940)Eric Snow2022-12-021-1/+25
* GH-91054: Add code object watchers API (GH-99859)Itamar Ostricher2022-12-021-0/+68
* gh-99894: Ensure the local names don't collide with the test file in tracebac...Pablo Galindo Salgado2022-12-011-6/+6
* gh-99612: Fix PyUnicode_DecodeUTF8Stateful() for ASCII-only data (GH-99613)Serhiy Storchaka2022-12-011-0/+54
* gh-89189: More compact range iterator (GH-27986)Serhiy Storchaka2022-11-302-6/+35
* Fix typo in exception message in `multiprocessing.pool` (#99900)Arne de Laat2022-11-301-1/+1
* gh-99891: Fix infinite recursion in the tokenizer when showing warnings (GH-9...Pablo Galindo Salgado2022-11-301-0/+12
* Improve zip64 limit error message (#95892)dmjohnsson232022-11-301-2/+2
* gh-98253: Break potential reference cycles in external code worsened by typin...Wenzel Jakob2022-11-301-3/+11
* gh-99127: Allow some features of syslog to the main interpreter only (gh-99128)Dong-hee Na2022-11-291-0/+64