summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* gh-101819: Remove _testcapi dependencies on specific _io symbols (#101918)Erlend E. Aasland2023-02-152-12/+8
* gh-101693: In sqlite3, deprecate using named placeholders with parameters sup...Erlend E. Aasland2023-02-155-1/+59
* gh-99108: Build the hashlib HACL* code as a static library. (#101917)Gregory P. Smith2023-02-143-4/+34
* gh-101758: Add a Test For Single-Phase Init Module Variants (gh-101891)Eric Snow2023-02-143-38/+660
* gh-101799: implement PREP_RERAISE_STAR as an intrinsic function (#101800)Irit Katriel2023-02-1413-73/+107
* GH-101898: Fix missing term references for hashable definition (#101899)Furkan Onder2023-02-1416-22/+22
* gh-99108: Import SHA2-384/512 from HACL* (#101707)Jonathan Protzenko2023-02-1416-434/+1259
* gh-101857: Allow xattr detection on musl libc (#101858)Sam James2023-02-142-1/+3
* gh-74895: getaddrinfo no longer raises OverflowError (#2435)Radek Smejkal2023-02-145-6/+68
* gh-101849: Add upgrade codes for old versions of launcher that ended up with ...Steve Dower2023-02-133-1/+23
* gh-101810: Remove duplicated st_ino calculation (GH-101811)James Lee2023-02-131-2/+0
* gh-92547: Purge sqlite3_enable_shared_cache() detection from configure (#101873)Erlend E. Aasland2023-02-132-52/+0
* GH-100987: Refactor `_PyInterpreterFrame` a bit, to assist generator improvem...Mark Shannon2023-02-131-4/+2
* GH-87849: Simplify stack effect of SEND and specialize it for generators and ...Mark Shannon2023-02-1315-99/+185
* Correct trivial grammar in reset_mock docs (#101861)Steve Kowalik2023-02-131-3/+3
* gh-101845: pyspecific: Fix i18n for availability directive (GH-101846)Jean Abou-Samra2023-02-121-9/+11
* gh-89792: Limit test_tools freeze test build parallelism based on the number ...Gregory P. Smith2023-02-122-6/+16
* gh-85984: Utilize new "winsize" functions from termios in pty tests. (#101831)Soumendra Ganguly2023-02-122-69/+28
* gh-89792: Prevent test_tools from copying 1000M of "source" in freeze test (#...Gregory P. Smith2023-02-122-1/+16
* Fix typo in test_fstring.py (#101823)mjoerg2023-02-111-1/+1
* GH-101797: allocate `PyExpat_CAPI` capsule on heap (#101798)Kumar Aditya2023-02-111-27/+45
* gh-101390: Fix docs for `imporlib.util.LazyLoader.factory` to properly call i...busywhitespace2023-02-101-1/+1
* Docs: Fix getstatus() -> getcode() typos (#101296)Hugo van Kemenade2023-02-102-2/+2
* Docs: use parameter list for sqlite3.Cursor.execute* (#101782)Erlend E. Aasland2023-02-101-12/+33
* gh-101763: Update bundled copy of libffi to 3.4.4 on Windows (GH-101784)Steve Dower2023-02-103-3/+4
* gh-101517: make bdb avoid looking up in linecache with lineno=None (#101787)Irit Katriel2023-02-103-3/+11
* gh-101759: Update Windows installer to SQLite 3.40.1 (#101762)Erlend E. Aasland2023-02-104-3/+4
* gh-101277: Finalise isolating itertools (GH-101305)Erlend E. Aasland2023-02-104-344/+220
* gh-101759: Update macOS installer to SQLite 3.40.1 (#101761)Erlend E. Aasland2023-02-102-3/+4
* Fix some typos in asdl_c.py (GH-101757)abel15022023-02-101-2/+2
* gh-101747: Fix refleak in new `OrderedDict` repr (GH-101748)Nikita Sobolev2023-02-101-0/+1
* gh-101430: Update tracemalloc to handle presize properly. (gh-101745)Dong-hee Na2023-02-093-23/+12
* GH-101228: Fix typo in docstring for read method of `_io.TextIOWrapper` class...Partha P. Mukherjee2023-02-091-3/+3
* Fix typo in `test_fstring.py` (#101600)Ikko Eltociear Ashimine2023-02-091-1/+1
* gh-101726: Update the OpenSSL version to 1.1.1t (GH-101727)Gregory P. Smith2023-02-099-17/+21
* gh-101283: Fix 'versionchanged' for the shell=True fallback on Windows in 3.1...Oleg Iarygin2023-02-091-5/+5
* LibFFI build requires x64 Cygwin, and skip the ARM build (GH-101743)Steve Dower2023-02-091-2/+2
* gh-101670: typo fix in PyImport_ExtendInittab() (#101723)Sergey B Kirpichev2023-02-091-1/+1
* GH-99293: Document that `Py_TPFLAGS_VALID_VERSION_TAG` shouldn't be used. (#G...Mark Shannon2023-02-092-0/+12
* no-issue: Add Dong-hee Na as the cjkcodecs codeowner (gh-101731)Dong-hee Na2023-02-091-0/+2
* gh-101678: Merge math_1_to_whatever() and math_1() (#101730)Sergey B Kirpichev2023-02-091-10/+2
* gh-101678: refactor the math module to use special functions from c11 (GH-101...Sergey B Kirpichev2023-02-092-184/+8
* gh-85984: Remove legacy Lib/pty.py code. (#92365)Soumendra Ganguly2023-02-093-13/+15
* gh-98831: Use opcode metadata for stack_effect() (#101704)Guido van Rossum2023-02-094-256/+88
* gh-101283: Version was just released, so should be changed in 3.11.3 (GH-101719)Steve Dower2023-02-081-5/+5
* gh-101283: Fix use of unbound variable (GH-101712)Steve Dower2023-02-081-0/+2
* gh-101283: Improved fallback logic for subprocess with shell=True on Windows ...Oleg Iarygin2023-02-083-1/+58
* gh-101277: Port more itertools static types to heap types (#101304)Erlend E. Aasland2023-02-082-327/+200
* gh-98831: Modernize CALL and family (#101508)Guido van Rossum2023-02-086-588/+646
* GH-101696: invalidate type version tag in `_PyStaticType_Dealloc` (#101697)Kumar Aditya2023-02-082-0/+3