summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* gh-112001: Fix test_builtins_have_signatures in test_inspect (GH-112002)Serhiy Storchaka2023-11-121-12/+7
* gh-111933: fix broken link to A.Neumaier article (gh-111937)Sergey B Kirpichev2023-11-121-1/+4
* gh-111777: Fix assertion errors on incorrectly still-tracked GC object destru...T. Wouters2023-11-121-1/+3
* Fix undefined behaviour in datetime.time.fromisoformat() (#111982)T. Wouters2023-11-111-1/+1
* gh-90890: New methods to access mailbox.Maildir message info and flags (#103905)Stephen Gildea2023-11-115-1/+247
* gh-110481: fix 'unused function' warning for `is_shared_refcnt_dead`. (gh-111...Sam Gross2023-11-101-4/+6
* gh-107431: Make `multiprocessing.managers.{DictProxy,ListProxy}` generic (#10...Nikita Sobolev2023-11-103-4/+12
* Remove dead code left after gh-110721 (#111905)Serhiy Storchaka2023-11-101-37/+0
* gh-80731: Avoid executing code in except block in cmd (GH-111740)Tian Gao2023-11-104-3/+43
* gh-111789: Simplify the sqlite code (GH-111829)Serhiy Storchaka2023-11-102-17/+6
* Add private _PyUnicode_AsUTF8NoNUL() function (GH-111957)Serhiy Storchaka2023-11-104-13/+18
* gh-110722: Make `-m test -T -j` use sys.monitoring (GH-111710)Łukasz Langa2023-11-1013-34/+166
* gh-111841: Fix os.putenv() and os.unsetenv() with embedded NUL on Windows (GH...Serhiy Storchaka2023-11-104-9/+19
* Bump mypy to 1.7.0 (#111961)Alex Waygood2023-11-102-4/+2
* gh-103791: handle `BaseExceptionGroup` in `contextlib.suppress()` (#111910)Zac Hatfield-Dodds2023-11-104-4/+25
* gh-111912: Run test_posix on Windows (GH-111913)Serhiy Storchaka2023-11-101-3/+7
* gh-108303: Install `Lib/test/configdata` (#111899)Nikita Sobolev2023-11-101-0/+1
* gh-111356: io: Add missing documented objects to io.__all__ (#111370)Nicolas Tessore2023-11-103-11/+17
* gh-111569: Fix critical sections test on WebAssembly (GH-111897)Sam Gross2023-11-092-0/+12
* gh-111881: Import _sha2 lazily in random (#111889)Victor Stinner2023-11-091-11/+15
* gh-81925: Implement native thread ids for kFreeBSD (#111761)Samuel Thibault2023-11-096-5/+18
* Improve error message for "float modulo by zero" (#111685)Pavel Ovchinnikov2023-11-091-1/+1
* gh-110875: Handle '.' properties in logging formatter configuration c… (GH-...Vinay Sajip2023-11-092-5/+41
* gh-111895: Convert definition list to bullet list for readability on mobile (...Hugo van Kemenade2023-11-091-6/+6
* gh-111786: Optimize for space for _PyEval_EvalFrameDefault on MSVC for PGO (#...Michael Droettboom2023-11-092-0/+11
* gh-111881: Import doctest lazily in libregrtest (#111884)Victor Stinner2023-11-091-5/+8
* Add detail to comment on range of random.random() (gh-111868)zipperer2023-11-091-1/+1
* gh-108303: Move more files to `Lib/test/test_module` (#111880)Nikita Sobolev2023-11-093-5/+5
* gh-111881: Use lazy import in test.support (#111885)Victor Stinner2023-11-092-8/+13
* gh-108303: Move config parser data to `Lib/test/configparserdata/` (gh-111879)Nikita Sobolev2023-11-095-12/+12
* GH-111843: Tier 2 exponential backoff (GH-111850)Mark Shannon2023-11-095-14/+47
* GH-109369: Exit tier 2 if executor is invalid (GH-111657)Mark Shannon2023-11-0911-230/+348
* gh-111835: Add seekable method to mmap.mmap (gh-111852)Donghee Na2023-11-095-12/+40
* gh-111354: remove comparisons with enum values, variable reuse, unused import...Irit Katriel2023-11-092-22/+15
* GH-111804: Drop posix.fallocate() under WASI (GH-111869)Brett Cannon2023-11-093-5/+10
* gh-111569: Implement Python critical section API (gh-111571)Sam Gross2023-11-0819-7/+630
* gh-110543: Fix CodeType.replace in presence of comprehensions (#110586)Jelle Zijlstra2023-11-083-2/+75
* Remove redundant check in dbm.open() (GH-111844)Serhiy Storchaka2023-11-081-5/+0
* gh-111495: Add tests for PyList C API (#111562)Kalyan2023-11-082-1/+456
* gh-68166: Tkinter: Add tests and examples for element_create() (GH-111453)Serhiy Storchaka2023-11-083-3/+203
* gh-111246: Remove listening Unix socket on close (#111483)Pierre Ossman (ThinLinc team)2023-11-085-2/+126
* gh-111768: Add `wsgiref.util.is_hop_by_hop` to `__all__` (#111770)Stefan2023-11-082-1/+2
* socket: Update generated AC code (#111853)Jelle Zijlstra2023-11-081-2/+7
* Glossary: Add "static type checker" (#111837)Jelle Zijlstra2023-11-084-7/+14
* gh-108303: Move more `typing` related files to `Lib/test/typinganndata` (#111...Nikita Sobolev2023-11-084-3/+2
* gh-111662: Update socket module to use AC for optimizing performance (gh-111661)Bogdan Romanyuk2023-11-082-69/+223
* GH-111848: Tidy up tier 2 handling of FOR_ITER specialization by using DEOPT_...Mark Shannon2023-11-088-136/+59
* gh-111089: Revert PyUnicode_AsUTF8() changes (#111833)Victor Stinner2023-11-0750-244/+952
* gh-61199: Remove superfluous global statements from `base64._b32{en,de}code()...Romuald Brunet2023-11-071-2/+0
* gh-111806: Fix `test_recursion` in `test_richcmp` on WASI builds (GH-111830)Nikita Sobolev2023-11-071-0/+1