summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* gh-117987: Restore several functions removed in Python 3.13 alpha 1 (GH-117993)Victor Stinner2024-04-182-4/+8
* gh-116932: Remove redundant NEWS entry (#118040)lyc85032024-04-181-1/+0
* gh-116932: Add note on how to report python documentation theme bugs (GH-117989)lyc85032024-04-181-0/+1
* gh-117641: Improve the perfornance of posixpath.commonpath() (#117652)Nice Zombies2024-04-181-0/+1
* gh-80361: Fix TypeError in email.Message.get_payload() (GH-117994)Serhiy Storchaka2024-04-171-0/+2
* gh-117680: make _PyInstructionSequence a PyObject and use it in tests (#117629)Irit Katriel2024-04-171-0/+1
* GH-100242: bring functools.py partial implementation more in line with C code...CF Bolz-Tereick2024-04-171-0/+5
* gh-117929: Restore removed PyEval_InitThreads() function (#117931)Victor Stinner2024-04-172-1/+2
* gh-115009: Update macOS installer to use SQLite 3.45.3 (#117443)Mariusz Felisiak2024-04-171-0/+1
* bpo-40944: Fix IndexError when parse emails with truncated Message-ID, addres...Ivan Savin2024-04-171-0/+1
* gh-117313: Fix re-folding email messages containing non-standard line separat...Serhiy Storchaka2024-04-171-0/+4
* gh-117394: Speed up os.path.ismount() on Posix (GH-117447)Serhiy Storchaka2024-04-171-0/+1
* gh-117503: Fix support of non-ASCII user names in posixpath.expanduser() (GH-...Serhiy Storchaka2024-04-171-0/+2
* gh-117845: Detect libedit hook function signature in configure (#117870)Joshua Root2024-04-171-0/+1
* gh-86650: Fix IndexError when parse emails with invalid Message-ID (GH-117934)Serhiy Storchaka2024-04-171-0/+2
* gh-75171: Fix parsing invalid email address headers starting or ending with a...tsufeki2024-04-171-0/+1
* gh-112844: Fix xz CPE identifier (GH-117656)Seth Michael Larson2024-04-161-1/+1
* gh-115009: Update Windows installer to use SQLite 3.45.3 (GH-117445)Mariusz Felisiak2024-04-162-4/+5
* gh-117645: Increase WASI stack size from 512 KiB to 8 MiB (#117674)Victor Stinner2024-04-161-0/+2
* gh-117755: Fix mimalloc for huge allocation on s390x (#117809)Victor Stinner2024-04-161-0/+2
* gh-115178: Add Counts of UOp Pairs to pystats (GH-115181)Jeff Glass2024-04-161-0/+1
* GH-115776: Static object are immortal, so mark them as such. (GH-117673)Mark Shannon2024-04-161-0/+2
* gh-117691: Add an appropriate stacklevel for PEP-706 tarfile deprecation warn...Alex Waygood2024-04-161-0/+5
* gh-102402: Fix floating point math issue by using `time.time_ns()` in `loggin...Douglas Thor2024-04-161-0/+2
* gh-77102: site: try utf-8 and fallback to locale encoding when reading .pth f...Inada Naoki2024-04-161-0/+3
* Docs: add link roles with Sphinx extlinks (#117850)Hugo van Kemenade2024-04-1530-69/+63
* gh-90329: Add _winapi.GetLongPathName and GetShortPathName and use in venv to...Steve Dower2024-04-151-0/+5
* GH-117750: When clearing object's dict, clear inline values but leave dict at...Mark Shannon2024-04-151-0/+3
* gh-117636: Remove redundant type check in `os.path.join()` (#117638)Nice Zombies2024-04-141-0/+1
* gh-117348: restore import time performance of configparser (#117703)Jason R. Coombs2024-04-141-0/+2
* GH-115060: Speed up `pathlib.Path.glob()` by omitting initial `stat()` (#117831)Barney Gale2024-04-131-0/+3
* gh-68583: webbrowser: replace `getopt` with `argparse`, add long options (#11...Hugo van Kemenade2024-04-131-0/+2
* gh-102247: http: support rfc9110 status codes (GH-117611)Michiel W. Beijen2024-04-131-0/+3
* GH-117727: Speed up `pathlib.Path.iterdir()` by using `os.scandir()` (#117728)Barney Gale2024-04-121-0/+2
* GH-115060: Speed up `pathlib.Path.glob()` by not scanning literal parts (#117...Barney Gale2024-04-121-0/+2
* gh-117431: Adapt bytes and bytearray .find() and friends to Argument Clinic (...Erlend E. Aasland2024-04-121-0/+9
* gh-117233: Detect support for several hashes at hashlib build time (GH-117234)Will Childs-Klein2024-04-111-0/+3
* gh-117722: Fix Stream.readuntil with non-bytes buffer objects (#117723)Bruce Merry2024-04-111-0/+2
* gh-117709: Add vectorcall support for str() with positional-only arguments (#...Erlend E. Aasland2024-04-111-0/+3
* GH-117586: Speed up `pathlib.Path.walk()` by working with strings (#117726)Barney Gale2024-04-111-0/+1
* GH-117586: Speed up `pathlib.Path.glob()` by working with strings (#117589)Barney Gale2024-04-101-0/+1
* GH-117546: Fix symlink resolution in `os.path.realpath('loop/../link')` (#117...Barney Gale2024-04-101-0/+2
* gh-117142: Port _ctypes to multi-phase init (GH-117181)neonene2024-04-101-0/+1
* gh-117692: Fix `AttributeError` in `DocTestFinder` on wrapped `builtin_or_met...Nikita Sobolev2024-04-101-0/+2
* gh-117686: Improve the performance of ntpath.expanduser() (#117690)Nice Zombies2024-04-101-1/+1
* gh-117648: Amend NEWS entry (#117697)Erlend E. Aasland2024-04-091-1/+1
* Merge branch 'main' of https://github.com/python/cpythonThomas Wouters2024-04-095-0/+24
|\
| * gh-117663: [Enum] fix _simple_enum's detection of aliases (GH-117664)Ethan Furman2024-04-091-0/+2
| * gh-117534: Add checking for input parameter in iso_to_ymd (#117543)Vlad48962024-04-092-0/+3
| * gh-116720: Fix corner cases of taskgroups (#117407)Guido van Rossum2024-04-091-0/+18