summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* GH-88116: Document that PyCodeNew is dangerous, and make PyCode_NewEmpty less...Mark Shannon2022-04-211-0/+3
* GH-88116: Use a compact format to represent end line and column offsets. (GH-...Mark Shannon2022-04-216-77/+161
* gh-91636: Don't clear required fields of function objects (GH-91651)Dennis Sweeney2022-04-211-0/+67
* bpo-42066: CookieJar cookies should not be sorted (GH-22745)Iman Kermani2022-04-211-5/+5
* bpo-46075: Store localhost cookies in CookieJar (#30108)Nick2022-04-191-0/+42
* gh-91616: re module, fix .fullmatch() mismatch when using Atomic Grouping or ...Ma Lin2022-04-192-1/+28
* gh-91231: Add shutdown_timeout to multiprocessing BaseManager (#32112)Victor Stinner2022-04-191-13/+21
* Add more tests for group names and refs in RE (GH-91695)Serhiy Storchaka2022-04-191-15/+41
* gh-90997: bpo-46841: Disassembly of quickened code (GH-32099)penguin_wwy2022-04-192-3/+142
* gh-91526: io: Remove device encoding support from TextIOWrapper (GH-91529)Inada Naoki2022-04-191-12/+0
* gh-74166: Add option to get all errors from socket.create_connection (GH-91586)Irit Katriel2022-04-181-0/+18
* gh-91670: Removes `SO` config variable in `sysconfig.py` (#91671)Bryan Weber2022-04-181-15/+0
* gh-91576: Speed up iteration of strings (#91574)Kumar Aditya2022-04-181-0/+31
* gh-91575: Update case-insensitive matching in re to the latest Unicode versio...Serhiy Storchaka2022-04-181-6/+49
* gh-91217: deprecate ossaudiodev (GH-91641)Brett Cannon2022-04-171-1/+4
* gh-91625: Don't ignore extended args of adaptive opcodes (GH-91626)Dennis Sweeney2022-04-173-2/+44
* gh-91298: Refine traversable (apply changes from importlib_resources 5.7.1) (...Jason R. Coombs2022-04-171-1/+1
* bpo-46126: Restore docstrings in importlib.metadata tests. (#32288)Jason R. Coombs2022-04-172-24/+44
* gh-78607: Replace __ltrace__ with __lltrace__ (GH-91619)Dennis Sweeney2022-04-161-5/+5
* gh-91462: Make lltrace output human-readable. (GH-91463)Dennis Sweeney2022-04-161-8/+89
* gh-91217: deprecate nis (GH-91606)Brett Cannon2022-04-161-1/+4
* gh-89770: Implement PEP-678 - Exception notes (GH-31317)Irit Katriel2022-04-163-53/+207
* gh-91607: Fix several test_concurrent_futures tests to actually test what the...Gregory P. Smith2022-04-161-56/+49
* gh-89263: Add typing.get_overloads (GH-31716)Jelle Zijlstra2022-04-161-4/+68
* bpo-43224: Add tests for TypeVarTuple substitution in Annotated (GH-31846)Matthew Rahtz2022-04-161-0/+71
* gh-69093: Add context manager support to sqlite3.Blob (GH-91562)Erlend Egeberg Aasland2022-04-161-0/+23
* gh-91217: deprecate nntplib (GH-91543)Brett Cannon2022-04-152-4/+4
* gh-90501: Add PyErr_GetHandledException and PyErr_SetHandledException (GH-30531)Irit Katriel2022-04-152-0/+24
* gh-69093: Don't allow instantiation of sqlite3.Blob objects (GH-91570)Erlend Egeberg Aasland2022-04-151-0/+1
* gh-69093: Expose sqlite3.Blob as a class (GH-91550)Jelle Zijlstra2022-04-151-0/+3
* gh-79156: Add start_tls() method to streams API (#91453)Oleg Iarygin2022-04-151-0/+63
* gh-91520: Rewrite imghdr inlining for clarity and completeness (#91521)Barry Warsaw2022-04-1515-7/+36
* gh-69093: Support basic incremental I/O to blobs in `sqlite3` (GH-30680)Erlend Egeberg Aasland2022-04-151-1/+156
* gh-91217: deprecate msilib (GH-91515)Brett Cannon2022-04-141-1/+4
* gh-91156: Fix `encoding="locale"` in UTF-8 mode (GH-70056)Inada Naoki2022-04-141-0/+1
* gh-87497: Document that urllib.request sends headers in camel case (GH-24661)Alix Lourme2022-04-141-0/+9
* gh-91217: deprecate imghdr (#91461)Brett Cannon2022-04-132-3/+4
* bpo-43218: Prevent venv creation when the target directory contains a PATH se...Dustin Rodrigues2022-04-131-0/+8
* bpo-43224: Forbid TypeVar substitution with Unpack (GH-32031)Serhiy Storchaka2022-04-131-0/+14
* gh-91243: Add typing.Required and NotRequired (PEP 655) (GH-32419)Jelle Zijlstra2022-04-122-2/+180
* gh-91276: make space for longer opcodes in dis output (GH-91444)Irit Katriel2022-04-121-227/+215
* gh-79097: Add support for aggregate window functions in sqlite3 (GH-20903)Erlend Egeberg Aasland2022-04-122-5/+165
* gh-91217: deprecate crypt (GH-91459)Brett Cannon2022-04-121-2/+2
* gh-91117: Ensure integer mod and pow operations use cached small ints (GH-31843)Dennis Sweeney2022-04-111-0/+42
* bpo-44807: Allow Protocol classes to define __init__ (GH-31628)Adrian Garcia Badaracco2022-04-111-0/+26
* bpo-45995: add "z" format specifer to coerce negative 0 to zero (GH-30049)John Belmonte2022-04-114-24/+154
* bpo-47120: make POP_JUMP_IF_TRUE/FALSE/NONE/NOT_NONE relative (GH-32400)Irit Katriel2022-04-112-14/+23
* bpo-47000: Add `locale.getencoding()` (GH-32068)Inada Naoki2022-04-091-3/+3
* bpo-47061: deprecate cgi and cgitb (GH-32410)Brett Cannon2022-04-093-6/+14
* Add feature macro PY_HAVE_THREAD_NATIVE_ID to the stable ABI definition (GH-3...Petr Viktorin2022-04-081-1/+0