summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-46838: Syntax error improvements for function definitions (GH-31590)Pablo Galindo Salgado2022-03-221-0/+204
* bpo-40280: Skip socket, fork, subprocess tests on Emscripten (GH-31986)Christian Heimes2022-03-2247-18/+151
* bpo-28080: Add support for the fallback encoding in ZIP files (GH-32007)Serhiy Storchaka2022-03-222-10/+161
* bpo-47081: Replace "qualifiers" with "quantifiers" in the re module documenta...Serhiy Storchaka2022-03-221-5/+5
* bpo-45150: Add hashlib.file_digest() for efficient file hashing (GH-31930)Christian Heimes2022-03-222-1/+101
* bpo-44336: Prevent tests hanging on child process handles on Windows (GH-26578)Jeremy Kloth2022-03-222-185/+117
* bpo-47080: Use atomic groups to simplify fnmatch (GH-32029)Tim Peters2022-03-212-29/+7
* bpo-433030: Add support of atomic grouping in regular expressions (GH-31982)Serhiy Storchaka2022-03-214-76/+293
* bpo-46841: Quicken code in-place (GH-31888)Brandt Bucher2022-03-212-72/+105
* bpo-38256: Fix binascii.crc32() when inputs are 4+GiB (GH-32000)Gregory P. Smith2022-03-201-1/+9
* bpo-47015: Update test_os from asyncore to asyncio (GH-31876)Oleg Iarygin2022-03-201-157/+79
* bpo-42369: Fix thread safety of zipfile._SharedFile.tell (GH-26974)Kevin Mehall2022-03-201-1/+3
* bpo-46382 dataclass(slots=True) now takes inherited slots into account (GH-31...Arie Bovenberg2022-03-192-9/+65
* bpo-46996: IDLE: Drop workarounds for old Tk versions (GH-31962)Serhiy Storchaka2022-03-193-36/+1
* bpo-47066: Convert a warning about flags not at the start of the regular expr...Serhiy Storchaka2022-03-192-66/+15
* bpo-39394: Improve warning message in the re module (GH-31988)Serhiy Storchaka2022-03-192-4/+9
* bpo-47022: Document asynchat, asyncore and smtpd removals in 3.12 (GH-31891)Hugo van Kemenade2022-03-183-3/+4
* bpo-43224: Add TypeVarTuple.__name__ (GH-31954)Jelle Zijlstra2022-03-182-11/+8
* bpo-47037: Don't test for strftime('%4Y') on Windows (GH-31945)Christian Heimes2022-03-181-4/+7
* bpo-45413: Define "posix_venv", "nt_venv" and "venv" sysconfig installation s...Miro HronĨok2022-03-184-15/+145
* bpo-40296: Fix supporting generic aliases in pydoc (GH-30253)Serhiy Storchaka2022-03-183-9/+83
* bpo-46421: Fix unittest filename evaluation when called as a module (GH-30654)Bader Zaidan2022-03-172-1/+12
* bpo-34790: Remove passing coroutine objects to asyncio.wait() (GH-31964)Andrew Svetlov2022-03-172-58/+11
* bpo-47042: Fix testing the HTML output in test_pydoc (GH-31959)Serhiy Storchaka2022-03-171-6/+10
* Use low bit of LOAD_GLOBAL's oparg to indicate whether it should push an addi...Mark Shannon2022-03-173-187/+179
* bpo-40280: Skip more tests on Emscripten (GH-31947)Christian Heimes2022-03-1715-8/+60
* bpo-46996: Remove support of Tcl/Tk < 8.5.12 (GH-31839)Serhiy Storchaka2022-03-176-189/+81
* Do not run test_gdb when gdb embeds Python 2. (GH-31956)Inada Naoki2022-03-171-0/+3
* bpo-46981: Remove typing._TypingEmpty (GH-31836)Serhiy Storchaka2022-03-172-15/+3
* bpo-44859: Raise more accurate exceptions in `sqlite3` (GH-27695)Erlend Egeberg Aasland2022-03-173-9/+28
* bpo-46480: add typing.assert_type (GH-30843)Jelle Zijlstra2022-03-172-1/+34
* bpo-22859: deprecate unittest.main.TestProgram.usageExit (GH-30293)Carlos Damazio2022-03-171-0/+3
* bpo-47039: Normalize repr() of asyncio future and task objects (GH-31950)Andrew Svetlov2022-03-174-27/+19
* bpo-47038: Increase a test timeout for slow CI machines (GH-31951)Andrew Svetlov2022-03-171-1/+1
* bpo-47038: Rewrite missed asyncio.wait_for test to use IsolatedAnsyncioTestCa...Andrew Svetlov2022-03-162-26/+24
* bpo-47038: Rewrite asyncio.wait_for test to use IsolatedAsyncioTestCase (GH-3...Andrew Svetlov2022-03-163-313/+270
* bpo-45979: Fix Tkinter tests with old Tk (>= 8.5.12) (GH-31938)Serhiy Storchaka2022-03-162-3/+5
* Rewrite asyncio.Queue tests with IsolatedAsyncioTestCace (#31935)Andrew Svetlov2022-03-161-324/+179
* bpo-40280: Detect presence of time.tzset and thread_time clock (GH-31898)Christian Heimes2022-03-153-1/+8
* bpo-40280: Skip wakeup_fd pipe tests on Emscripten (GH-31909)Christian Heimes2022-03-151-0/+5
* bpo-43253: Don't call shutdown() for invalid socket handles (GH-31892)Maximilian Hils2022-03-152-1/+9
* bpo-20392: Fix inconsistency with uppercase file extensions in mimetypes.gues...Kumar Aditya2022-03-152-6/+11
* Drop accidentally added whitespaces in asyncio internals (GH-31900)Andrew Svetlov2022-03-151-1/+1
* bpo-46587: Skip tests if strftime does not support glibc extension (GH-31873)Christian Heimes2022-03-154-21/+36
* bpo-46557: Log captured warnings without format string (GH-30975)Michael P. Nitowski2022-03-151-1/+3
* Revert "bpo-46986: Upgrade bundled setuptools to 60.9.3 (GH-31820)" (GH-31879)Ned Deily2022-03-143-1/+1
* bpo-40280: select: Use NULL for empty fdset (GH-31865)Christian Heimes2022-03-141-1/+1
* bpo-46994: Accept explicit contextvars.Context in asyncio create_task() API (...Andrew Svetlov2022-03-148-50/+165
* bpo-47004: Sync with importlib_metadata 4.11.3. (#31854)Jason R. Coombs2022-03-132-18/+49
* bpo-46986: Upgrade bundled setuptools to 60.9.3 (GH-31820)Pradyun Gedam2022-03-133-1/+1