summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-45173 Remove configparser deprecations (GH-28292)Hugo van Kemenade2021-09-135-94/+18
* bpo-21302: Update time.sleep() doc for clock_nanosleep() (GH-28311)Victor Stinner2021-09-132-19/+32
* bpo-21302: Add clock_nanosleep() implementation for time.sleep() (GH-28111)Livius2021-09-135-5/+100
* bpo-45181: Simplify loading sqlite3 tests (GH-28304)Serhiy Storchaka2021-09-1310-146/+14
* bpo-45182: Fix incorrect use of requires_zlib in test_bdist_rpm (GH-28305)Serhiy Storchaka2021-09-131-2/+2
* bpo-5846: Do not use obsolete unittest functions. (GH-28303)Serhiy Storchaka2021-09-1349-93/+80
* bpo-45126: Fix ref. leak in `sqlite3.Connection.__init__` (GH-28231)Erlend Egeberg Aasland2021-09-122-13/+49
* bpo-43413: Fix handling keyword arguments in subclasses of some buitin classe...Serhiy Storchaka2021-09-1226-67/+285
* bpo-44987: Fix typo whatsnew 3.11 (GH-28293)Dong-hee Na2021-09-111-1/+1
* bpo-44987: Speed up unicode normalization of ASCII strings (GH-28283)Dong-hee Na2021-09-113-0/+9
* bpo-35474: Fix mimetypes.guess_all_extensions() potentially mutating list (GH...Serhiy Storchaka2021-09-113-8/+20
* bpo-45163: Haiku build fix. (GH-28269)David CARLIER2021-09-113-2/+7
* IDLE: adjust Python version in doc url for 3.10+ (GH-28228)giovanniwijaya2021-09-101-5/+7
* bpo-45144: use subTests in test_peepholer (GH-28247)Irit Katriel2021-09-101-43/+53
* bpo-9811: [doc] strftime handling of unsupported format specifiers is platfor...Irit Katriel2021-09-101-1/+2
* bpo-25894: Always report skipped and failed subtests separately (GH-28082)Serhiy Storchaka2021-09-103-49/+189
* bpo-44964: Correct the note about the f_lasti field (GH-28208)Pablo Galindo Salgado2021-09-102-4/+4
* bpo-44219: Mention GH-28250 is a deadlock bugfix (GH-28261)Łukasz Langa2021-09-101-1/+2
* Fix typos in pep384_macrocheck.py (GH-28220)Ikko Ashimine2021-09-101-2/+2
* bpo-45132: Fix the reStructuredText markup error. (GH-28270)Serhiy Storchaka2021-09-101-1/+1
* bpo-40563: Support pathlike objects on dbm/shelve (GH-21849)Henry-Joseph Audéoud2021-09-1014-68/+124
* bpo-45024 and bpo-23864: Document how interface testing works with the collec...Raymond Hettinger2021-09-102-63/+168
* bpo-45067 - Verify the version of ncurses for extended color support feature ...Senthil Kumaran2021-09-092-2/+7
* Fix minor typo in 3.10.rst (GH-28253)D.Lintin2021-09-091-1/+1
* bpo-44219: Release the GIL during isatty syscalls (GH-28250)Vincent Michel2021-09-093-2/+20
* bpo-45017: move opcode-related logic from modulefinder to dis (GH-28246)Irit Katriel2021-09-093-26/+76
* bpo-44860: Update test_sysconfig for posix_user platlib (GH-28235)Victor Stinner2021-09-093-1/+14
* Specify default order in memoryview.tobytes() docs (GH-27936)andrei kulakov2021-09-091-1/+1
* Fix small mistake in fileinput documentation (GH-28241)Jean-Abou-Samra2021-09-091-1/+1
* bpo-20499: Rounding error in statistics.pvariance (GH-28230)Raymond Hettinger2021-09-093-56/+51
* bpo-38371: Remove deprecated `tkinter` split() method (GH-28237)Erlend Egeberg Aasland2021-09-085-264/+6
* bpo-44340: Update whatsnews for ThinLTO (GH-28229)Dong-hee Na2021-09-081-0/+3
* bpo-45129 Remove deprecated reuse_address (GH-28207)Hugo van Kemenade2021-09-085-70/+33
* bpo-19113: Remove unused test_errors from ctypes tests (GH-28008)andrei kulakov2021-09-081-9/+0
* bpo-44959: Add fallback to extension modules with '.sl' suffix on HP-UX (GH-2...Florin Spătar2021-09-082-1/+2
* bpo-45121: Fix RecursionError when calling Protocol.__init__ from a subclass'...Yurii Karabas2021-09-083-0/+17
* bpo-45132 Remove deprecated __getitem__ methods (GH-28225)Hugo van Kemenade2021-09-0811-139/+34
* bpo-39573: Py_TYPE becomes a static inline function (GH-28128)Victor Stinner2021-09-085-9/+52
* bpo-45022: Fix libffi DLL name in Windows installer sources (GH-28203)giovanniwijaya2021-09-071-1/+1
* bpo-24888: Clarify subprocess.check_call propagates exceptions if unable to s...DonnaDia2021-09-071-0/+2
* Remove documentation for non-existing socket class attributes (GH-28029)Matti Picus2021-09-071-3/+0
* bpo-45012: Release GIL around stat in os.scandir (GH-28085)Stanisław Skonieczny2021-09-073-2/+11
* Add more itertool recipes (GH-28165)Raymond Hettinger2021-09-072-2/+43
* bpo-38820: Test with OpenSSL 3.0.0 final (GH-28205)Christian Heimes2021-09-072-2/+6
* bpo-45118: Fix regrtest second summary for re-run tests (GH-28183)Victor Stinner2021-09-071-4/+7
* bpo-45104: Clarify when __init__ is called (GH-28210)Raymond Hettinger2021-09-071-1/+1
* bpo-44348: BaseException deallocator uses trashcan (GH-28190)Victor Stinner2021-09-072-1/+14
* bpo-42064: Pass module state to trace, progress, and authorizer callbacks (GH...Erlend Egeberg Aasland2021-09-072-73/+111
* bpo-45034: Fix how upper limit is formatted for `struct.pack("H", ...)` (GH-2...Nikita Sobolev2021-09-074-6/+27
* Revert "bpo-45035: Make sysconfig posix_home depend on platlibdir (GH-28011)"...Pablo Galindo Salgado2021-09-072-5/+3