summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* gh-112559: Avoid unnecessary conversion attempts to enum_klass in signal.py (...Yilei Yang2023-12-241-0/+3
* gh-112800: Ignore PermissionError on SubprocessTransport.close() in asyncio (...Allison Karlitskaya2023-12-241-0/+2
* gh-74573: document that ndbm can silently corrupt databases on macOS (#113354)Ronald Oussoren2023-12-231-0/+3
* gh-113188: Fix shutil.copymode() on Windows (GH-113189)Serhiy Storchaka2023-12-231-0/+6
* gh-113212: Improve error message & document zero-arg super inside nested func...Yan Yanchii2023-12-221-0/+1
* GH-112215: Increase C recursion limit for non debug builds (GH-113397)Mark Shannon2023-12-221-0/+3
* gh-113297: Fix segfault in compiler for with statement with 19 context manage...Irit Katriel2023-12-221-0/+1
* gh-95754: Better AttributeError on partially initialised module (#112577)Shantanu2023-12-211-0/+1
* gh-113174: Sync with importlib_metadata 7.0 (#113175)Jason R. Coombs2023-12-211-0/+5
* gh-65701: document that freeze doesn't work with framework builds on macOS (#...Ronald Oussoren2023-12-211-0/+2
* gh-87277: Don't look for X11 browsers on macOS in webbrowser (#24480)Ronald Oussoren2023-12-211-0/+3
* gh-112305: Fix check-clean-src to detect frozen_modules .h files. (#113344)Gregory P. Smith2023-12-211-0/+3
* gh-111375: Use `NULL` rather than `None` in the exception stack to indicate t...Carey Metcalfe2023-12-211-0/+2
* GH-113214: Fix SSLProto exception handling in SSL-over-SSL scenarios (#113334)Martijn Pieters2023-12-201-0/+1
* gh-113257: Automatically generate pip SBOM metadata from wheel (#113295)Seth Michael Larson2023-12-201-1/+1
* add Ujan to ACKS for work on enum docs (GH-113301)Ethan Furman2023-12-201-0/+1
* gh-111973: Update Windows installer to use SQLite 3.44.2 (#113281)Erlend E. Aasland2023-12-191-0/+1
* gh-87264: Convert tarinfo type to stat type (GH-113230)Marat Idrisov2023-12-191-0/+1
* gh-111973: Update macOS installer to use SQLite 3.44.2 (GH-113279)Erlend E. Aasland2023-12-191-0/+1
* gh-101100: Fix Sphinx warnings in `library/ast.rst` (#113289)Hugo van Kemenade2023-12-191-1/+1
* gh-113054: Compiler no longer replaces a redundant jump with no line number b...Irit Katriel2023-12-191-0/+2
* gh-113257: Fix SBOM metadata for pip 23.3.2 (#113262)Seth Michael Larson2023-12-191-4/+4
* gh-113269: IDLE - Fix test_editor hang (macOS) (#113271)Terry Jan Reedy2023-12-191-0/+1
* gh-102362: Fix macOS version number in result of sysconfig.get_platform() (GH...Ronald Oussoren2023-12-181-0/+3
* gh-108269: Add CFBundleAllowMixedLocalizations to Info.plist on macOS (GH-113...Ronald Oussoren2023-12-181-0/+4
* gh-113199: Make read1() and readline() of HTTPResponse close IO after reading...Illia Volochii2023-12-181-0/+3
* gh-113246: Updated bundled pip to 23.3.2 (gh-113249)Stéphane Bidoul2023-12-182-5/+6
* gh-113117: Support posix_spawn in subprocess.Popen with close_fds=True (#113118)Jakub Kulík2023-12-171-0/+4
* gh-113149: Improve error message when JSON has trailing comma (GH-113227)Carson Radtke2023-12-171-0/+2
* gh-113119 fix environment handling in subprocess.Popen when posix_spawn is us...Jakub Kulík2023-12-171-0/+2
* gh-113202: Add a strict option to itertools.batched() (gh-113203)Raymond Hettinger2023-12-161-0/+1
* gh-67790: Support basic formatting for Fraction (#111320)Mark Dickinson2023-12-161-0/+2
* gh-110746: Improve markup in ``tkinter.ttk.rst`` (#111236)Akshat Khandelwal2023-12-151-0/+1
* [CVE-2023-27043] gh-102988: Reject malformed addresses in email.parseaddr() (...Victor Stinner2023-12-151-0/+8
* gh-113009: Fix multiprocessing Process.terminate() on Windows (#113128)Victor Stinner2023-12-151-0/+5
* gh-61648: Detect line numbers of properties in doctests (GH-113161)Serhiy Storchaka2023-12-151-0/+1
* gh-112716: Fix SystemError when __builtins__ is not a dict (GH-112770)Serhiy Storchaka2023-12-141-0/+2
* gh-112730: Update docs for colour env vars (#112837)Hugo van Kemenade2023-12-141-0/+3
* gh-59616: Support os.chmod(follow_symlinks=True) and os.lchmod() on Windows (...Serhiy Storchaka2023-12-141-0/+3
* gh-111049: Fix crash during garbage collection of the BytesIO buffer object (...Serhiy Storchaka2023-12-141-0/+2
* gh-86179: Implement realpath() on Windows for getpath.py calculations (GH-113...Steve Dower2023-12-131-0/+1
* bpo-40648: Test modes that file can get with chmod() on Windows (GH-20130)Pavol Babinčák‏2023-12-131-0/+1
* gh-110190: Fix ctypes structs with array on PPCLE64 (GH-112959)Diego Russo2023-12-131-0/+1
* gh-111650: Ensure pyconfig.h includes Py_GIL_DISABLED on Windows (GH-112778)Steve Dower2023-12-131-0/+3
* gh-112962: in dis module, put cache information in the Instruction instead of...Irit Katriel2023-12-131-0/+3
* gh-101100: Fix Sphinx warning in references with asterisks (#113029)Hugo van Kemenade2023-12-135-10/+10
* gh-101336: Add keep_alive keyword arg for asyncio create_server() (#112485)beavailable2023-12-131-0/+1
* gh-112622: Pass name to loop create_task method (#112623)Jamie2023-12-131-0/+2
* gh-112989: asyncio: Reduce overhead to connect sockets with SelectorEventLoop...J. Nick Koston2023-12-131-0/+1
* gh-112320: Implement on-trace confidence tracking for branches (#112321)Guido van Rossum2023-12-121-0/+4