main
Commits on Aug 6, 2022
-
gh-88339: enable fast seeking of uncompressed unencrypted zipfile.Zip…
…ExtFile (GH-27737) Avoid reading all of the intermediate data in uncompressed items in a zip file when the user seeks forward. Contributed by: @JuniorJPDJ
-
gh-94635: Fixup sqlite3 'Introduction' seealso note (#95751)
In gh-95269, the seealso note incorrectly ended up in the 'Tutorial' section.
-
�gh-95376: Add test for names containing null (#GH-5394)
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@protonmail.com>
-
-
gh-95155: Update "Using Python on a Mac" documentation (GH-95284)
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
-
Fix typo in test_dataclasses.py (gh-95735)
`dataclass` was called as a function when it was almost certainly intended to be a decorator.
-
-
gh-93243: Make smtpd private before porting its users (GH-93246)
gh-93243 This PR is required to reduce diffs of the following porting (no need to either maintain documentation and tests consistent with each porting step, or try to port everything and remove smtpd in a single PR). Automerge-Triggered-By: GH:warsaw
Commits on Aug 5, 2022
-
gh-86943: implement
pathlib.WindowsPath.is_mount()(GH-31458)Have `pathlib.WindowsPath.is_mount()` call `ntpath.ismount()`. Previously it raised `NotImplementedError` unconditionally. https://bugs.python.org/issue42777
-
gh-95251: IDLE - Add What's New section to README (#95688)
Document what I (TJR) currently do for 3.10/3.11. Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
-
gh-89362: Doc IDLE menu and search (#95697)
Update menu item position and capitalization. Add paragraph about search. For help.html, include save-as addition.
-
-
-
gh-93744: Remove configure --with-cxx-main option (#95651)
Remove the "configure --with-cxx-main" build option: it didn't work for many years. Remove the MAINCC variable from configure and Makefile. The MAINCC variable was added by the issue gh-42471: commit 0f48d98. Previously, --with-cxx-main was named --with-cxx. Keep CXX and LDCXXSHARED variables, even if they are no longer used by Python build system.
-
gh-95573: Reduce test data size in test_asyncio/test_ssl.py (GH-95668)
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
-
GH-95685: Fix rendering of the string documentation (#95686)
There's an extra underlines that messed the rest of the documentation rendering. Closes #95685
-
-
gh-65802: IDLE - explain SaveAs and extensions (#95690)
File name extensions may or may not be shown for the current name and are added in an OS-dependent manner if not given for the new name.
-
gh-94619: Remove long deprecated methods module_repr() and load_modul…
Commits on Aug 4, 2022
-
Docs: sqlite3 docs fixup (#95681)
- Disable links to the module itself - Fix link indent - Consistent ref markup
-
gh-95271: Extract placeholders howto from sqlite3 tutorial (#95522)
Co-authored-by: CAM Gerlach <CAM.Gerlach@Gerlach.CAM> Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
-
-
gh-95273: Improve documented return values and exceptions raised for …
…sqlite3 class methods (#95530) Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com> Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
-
Docs: fix two typos in the sqlite3 docs (#95661)
- statment => statement - transaciton => transaction
-
gh-94673: Recover Weaklist Lookup Performance (gh-95544)
gh-95302 seems to have introduced a small performance regression. Here we make some minor changes to recover that lost performance.
-
-
-
gh-87092: create a 'jump target label' abstraction so that the compil…
…er's codegen stage does not work directly with basic blocks (GH-95398)
-
GH-95289: Always call uncancel() when parent cancellation is requested (
#95602) Co-authored-by: Guido van Rossum <guido@python.org>