summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* gh-107122: Add clear method to dbm.gdbm.module (gh-107127)Dong-hee Na2023-07-231-0/+14
* gh-106186: Don't report MultipartInvariantViolationDefect for valid multipart...htsedebenham2023-07-233-1/+25
* bpo-18319: gettext() can retrieve a message even if a plural form exists (#19...Gilles Bassière2023-07-232-4/+10
* gh-82500: Fix asyncio sendfile overflow on 32bit (#107056)J. Nick Koston2023-07-231-0/+3
* gh-107082: Remove debug hack from get_first_executor in test_capi.test_misc (...Guido van Rossum2023-07-231-1/+1
* gh-106527: asyncio: optimize to add/remove readers and writers (#106528)J. Nick Koston2023-07-222-53/+47
* gh-107028: tiny textual changes in logging docs and docstrings (GH-107029)Jochem Boersma2023-07-221-1/+1
* gh-65495: Use lowercase `mail from` and `rcpt to` in `smtplib.SMTP` (#107019)Matthieu Caneill2023-07-222-2/+16
* gh-69714: Make `calendar` module fully tested (#93655)Bart Skowron2023-07-222-54/+202
* gh-105699: Add some stress tests for subinterpreter creation (#106966)Eric Snow2023-07-221-0/+22
* gh-106714: Fix test_capi to not write a coredump (#107007)Victor Stinner2023-07-221-3/+9
* gh-106368: Increase coverage for Argument Clinic output directive (#106979)Erlend E. Aasland2023-07-221-0/+53
* gh-106970: Fix Argument Clinic 'destination <name> clear' command (#106972)Erlend E. Aasland2023-07-222-0/+65
* gh-96663: Add a better error message for __dict__-less classes setattr (#103232)James Hilton-Balfe2023-07-222-2/+18
* gh-106004: Add PyDict_GetItemRef() function (#106005)Victor Stinner2023-07-211-0/+2
* gh-106368: Increase Argument Clinic test coverage for IndentStack (#106933)Erlend E. Aasland2023-07-211-0/+19
* gh-106669: Revert "gh-102988: Detect email address parsing errors ... (#10512...Gregory P. Smith2023-07-212-134/+25
* gh-105481: do not auto-generate pycore_intrinsics.h (#106913)Irit Katriel2023-07-201-23/+3
* GH-104584: Miscellaneous fixes for -Xuops (GH-106908)Brandt Bucher2023-07-203-16/+33
* gh-102799: use sys.exception() instead of sys.exc_info() in contextlib (#103311)Irit Katriel2023-07-203-24/+34
* gh-106751: Optimize _PolllikeSelector for many iteration case (gh-106884)Pieter Eendebak2023-07-201-17/+9
* GH-100502: Add `pathlib.PurePath.pathmod` attribute (GH-106533)Barney Gale2023-07-192-58/+58
* gh-104090: Fix unittest collectedDurations resources leak (#106795)Yonatan Bitton2023-07-191-1/+2
* gh-106751: Optimize SelectSelector.select() for many iteration case (gh-106879)Dong-hee Na2023-07-191-10/+8
* gh-106751: Optimize KqueueSelector.select() for many iteration case (gh-106864)Dong-hee Na2023-07-191-8/+6
* gh-106727: Make `inspect.getsource` smarter for class for same name definitio...Tian Gao2023-07-183-12/+70
* gh-105481: Generate the opcode lists in dis from data extracted from bytecode...Irit Katriel2023-07-182-124/+68
* gh-106751: selectors: optimize EpollSelector.select() (#106754)J. Nick Koston2023-07-181-8/+9
* bpo-42327: C API: Add PyModule_Add() function (GH-23443)Serhiy Storchaka2023-07-181-0/+1
* gh-106368: Increase Argument Clinic test coverage for cpp.Monitor (#106833)Erlend E. Aasland2023-07-172-1/+180
* gh-106603: Make uop struct a triple (opcode, oparg, operand) (#106794)Guido van Rossum2023-07-171-12/+12
* gh-61215: threadingmock: Improve test suite to avoid race conditions (#106822)Mario Corchero2023-07-171-137/+58
* gh-106529: Generate uops for POP_JUMP_IF_[NOT_]NONE (#106796)Guido van Rossum2023-07-171-0/+30
* gh-106687: _ssl: use uint64_t for SSL options (#106700)Victor Stinner2023-07-171-0/+24
* gh-106789: avoid importing pprint from sysconfig (#106790)Irit Katriel2023-07-172-21/+13
* gh-105540: Convert `pytest` tests of `cases_generator` to regular tests (#106...Nikita Sobolev2023-07-161-0/+537
* gh-105726: Add `__slots__` to `AbstractContextManager` and `AbstractAsyncCont...Grigoriev Semyon2023-07-163-0/+26
* gh-106752: Sync with zipp 3.16.2 (#106757)Jason R. Coombs2023-07-155-27/+199
* gh-81283: compiler: remove indent from docstring (#106411)Inada Naoki2023-07-153-27/+57
* gh-106368: Increase Argument Clinic BlockParser test coverage (#106759)Erlend E. Aasland2023-07-151-4/+96
* gh-106529: Fix subtle Tier 2 edge case with list iterator (#106756)Guido van Rossum2023-07-151-0/+13
* gh-106752: Move zipfile._path into its own package (#106753)Jason R. Coombs2023-07-148-0/+0
* gh-102799: replace internal sys.exc_info() call by sys.exception() (#106746)Irit Katriel2023-07-141-5/+5
* gh-106554: replace `_BaseSelectorImpl._key_from_fd` with `dict.get` (#106555)J. Nick Koston2023-07-141-17/+4
* gh-105481: expose opcode metadata via the _opcode module (#106688)Irit Katriel2023-07-141-0/+64
* gh-106531: Remove importlib.resources._legacy (#106532)Jason R. Coombs2023-07-142-139/+0
* gh-105626: Change the default return value of `HTTPConnection.get_proxy_respo...Nikita Sobolev2023-07-142-3/+15
* gh-106529: Split FOR_ITER_{LIST,TUPLE} into uops (#106696)Guido van Rossum2023-07-141-2/+45
* gh-106368: Increase Argument Clinic test coverage (#106728)Erlend E. Aasland2023-07-132-0/+590
* gh-106664: selectors: add get() method to _SelectorMapping (#106665)J. Nick Koston2023-07-132-5/+15