summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* gh-116127: PEP-705: Add `ReadOnly` support for `TypedDict` (#116350)Nikita Sobolev2024-03-122-11/+137
* gh-116604: Correctly honor the gc status when calling _Py_RunGC (#116628)Pablo Galindo Salgado2024-03-121-0/+25
* gh-89547: Support for nesting special forms like Final (#116096)Mehdi Drissi2024-03-122-14/+30
* gh-113538: Revert "gh-113538: Add asycio.Server.{close,abort}_clients (#11443...Guido van Rossum2024-03-125-119/+20
* gh-116600: [Enum] fix global Flag repr (GH-116615)Ethan Furman2024-03-112-1/+3
* gh-90095: Make .pdbrc work properly and add some reasonable tests (#110496)Tian Gao2024-03-112-96/+100
* gh-116040: [Enum] fix test_empty_names test (GH-116508)Ethan Furman2024-03-112-14/+8
* gh-71052: Use `raise_signal` in `ThreadSignals.test_signals` (#116423)Malcolm Smith2024-03-111-18/+7
* gh-113538: Add asycio.Server.{close,abort}_clients (#114432)Pierre Ossman (ThinLinc team)2024-03-115-20/+119
* gh-71052: Change Android's `sys.platform` from "linux" to "android"Malcolm Smith2024-03-1119-52/+58
* gh-116167: Allow disabling the GIL with `PYTHON_GIL=0` or `-X gil=0` (#116338)Brett Simmers2024-03-114-1/+50
* gh-116417: Move 4 limited C API test files to _testlimitedcapi (#116571)Victor Stinner2024-03-113-31/+31
* gh-88352: Make TimedRotatingFileHandler tests more stable (GH-116409)Serhiy Storchaka2024-03-111-38/+17
* gh-116417: Argument Clinic: test generated Limited C API code for float args ...Erlend E. Aasland2024-03-111-2/+56
* gh-116057: Use relative recursion limits when testing os.walk() and Path.walk...Malcolm Smith2024-03-102-5/+5
* gh-115142: Skip ``test__xxsubinterpreters`` if ``_testinternalcapi`` is not a...Kirill Podoprigora2024-03-091-1/+1
* gh-75988: Fix issues with autospec ignoring wrapped object (#115223)infohash2024-03-082-2/+78
* Replace stat.ST_xxx usage with os.stat().st_xxx (#116501)Victor Stinner2024-03-083-27/+40
* gh-116493: Remove old Python 2.x _winreg imports from platform.py (GH-116494)Nikita Sobolev2024-03-081-8/+2
* gh-116349: Deprecate `platform.java_ver` function (#116471)Nikita Sobolev2024-03-082-4/+10
* gh-116485: Fixed the typo (#116486)Varun Gole2024-03-081-1/+1
* gh-116040: [Enum] fix by-value calls when second value is falsey; e.g. Cardin...Ethan Furman2024-03-072-4/+34
* gh-116417: Add _testlimitedcapi C extension (#116419)Victor Stinner2024-03-073-25/+42
* gh-116381: Remove bad specializations, add fail stats (GH-116464)Ken Jin2024-03-071-43/+37
* gh-115421: Test that our Makefile has all needed test folders (GH-115813)Nikita Sobolev2024-03-071-0/+64
* gh-109653: Reduce import overhead of uuid module on Linux (#115160)Shantanu2024-03-061-1/+4
* gh-107361: strengthen default SSL context flags (#112389)William Woodruff2024-03-0622-1066/+1145
* gh-88118: Fix some test_multiprocessing flakiness. (#116434)Gregory P. Smith2024-03-061-5/+10
* gh-115957: Close coroutine if TaskGroup.create_task() raises an error (#116009)Jason Zhang2024-03-062-16/+28
* gh-116381: Specialize CONTAINS_OP (GH-116385)Ken Jin2024-03-063-37/+53
* gh-116143: Fix race condition in pydoc _start_server (#116144)Itamar Oren2024-03-061-3/+4
* gh-107625: configparser: Raise error if a missing value is continued (GH-107651)Prince Roshan2024-03-062-0/+40
* gh-107954: Add PyConfig_MEMBER_BOOL type to PyConfigSpec (#116359)Victor Stinner2024-03-063-151/+163
* gh-116112: Fix `ResourceWarning` in `test_asyncio.test_stream` (#116371)Nikita Sobolev2024-03-051-0/+1
* gh-109653: Just import `recursive_repr` in `dataclasses` (gh-109822)Nikita Sobolev2024-03-051-23/+3
* chore: fix typos (#116345)cui fliter2024-03-056-7/+7
* gh-76785: Minor Improvements to "interpreters" Module (gh-116328)Eric Snow2024-03-056-20/+122
* gh-74668: Fix support of bytes in urllib.parse.parse_qsl() (GH-115771)Serhiy Storchaka2024-03-052-26/+61
* gh-76511: Fix email.Message.as_string() for non-ASCII message with ASCII char...Serhiy Storchaka2024-03-053-2/+17
* GH-115819: Eliminate Boolean guards when value is known (GH-116355)Mark Shannon2024-03-051-2/+4
* gh-116325: Raise `SyntaxError` rather than `IndexError` on ForwardRef with em...Nikita Sobolev2024-03-052-1/+7
* gh-112087: Make list_{slice, ass_slice, subscript} to be threadsafe (gh-116233)Donghee Na2024-03-051-0/+5
* gh-115490: Make the interpreter.channels and interpreter.queues Modules Handl...Eric Snow2024-03-044-7/+41
* gh-57141: Add dircmp shallow option (GH-109499)Tobias Rautenkranz2024-03-042-29/+110
* gh-115832: Fix instrumentation version mismatch during interpreter shutdown (...Brett Simmers2024-03-042-1/+41
* gh-115256: Remove refcycles from tarfile writing (GH-115257)pan3242024-03-041-2/+20
* gh-114258: Argument Clinic: refactor getset implementation (#116170)Erlend E. Aasland2024-03-042-10/+8
* pathlib ABCs: follow all symlinks in `PathBase.glob()` (#116293)Barney Gale2024-03-042-39/+34
* gh-115809: Improve TimedRotatingFileHandler.getFilesToDelete() (GH-115812)Serhiy Storchaka2024-03-032-36/+52
* gh-85644: webbrowser: Use $XDG_CURRENT_DESKTOP to check desktop (GH-21731)Marco Trevisan2024-03-021-3/+9