Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | gh-83004: Harden msvcrt further (#103420) | Erlend E. Aasland | 2023-04-19 | 1 | -62/+53 |
| | |||||
* | GH-88342: clarify that `asyncio.as_completed` accepts generators yielding ↵ | Kumar Aditya | 2023-04-19 | 2 | -1/+5 |
| | | | | tasks (#103626) | ||||
* | gh-102778: IDLE - make sys.last_exc available in Shell after traceback (#103314) | Irit Katriel | 2023-04-19 | 2 | -0/+2 |
| | | | | --------- Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> | ||||
* | gh-103582: Remove last references to `argparse.REMAINDER` from docs (#103586) | Nikita Sobolev | 2023-04-19 | 1 | -2/+2 |
| | |||||
* | gh-103583: Always pass multibyte codec structs as const (#103588) | Erlend E. Aasland | 2023-04-19 | 2 | -7/+7 |
| | |||||
* | gh-103617: Fix compiler warning in _iomodule.c (#103618) | Erlend E. Aasland | 2023-04-19 | 1 | -2/+3 |
| | |||||
* | gh-103596: [Enum] do not shadow mixed-in methods/attributes (GH-103600) | Ethan Furman | 2023-04-18 | 5 | -41/+85 |
| | | | | | | | | | | | | | | | | | | For example: class Book(StrEnum): title = auto() author = auto() desc = auto() Book.author.desc is Book.desc but Book.author.title() == 'Author' is commonly expected. Using upper-case member names avoids this confusion and possible performance impacts. Co-authored-by: samypr100 <3933065+samypr100@users.noreply.github.com> | ||||
* | GH-100530: Change the error message for non-class class patterns (GH-103576) | Nikita Sobolev | 2023-04-18 | 2 | -1/+2 |
| | |||||
* | gh-95299: Remove lingering setuptools reference in installer scripts (GH-103613) | Steve Dower | 2023-04-18 | 1 | -1/+0 |
| | |||||
* | [Doc] Fix a typo in optparse.rst (#103504) | zyckk4 | 2023-04-18 | 1 | -1/+1 |
| | |||||
* | gh-101100: Fix broken reference `__format__` in `string.rst` (#103531) | yuki | 2023-04-18 | 1 | -2/+2 |
| | |||||
* | gh-95299: Stop installing setuptools as a part of ensurepip and venv (#101039) | Pradyun Gedam | 2023-04-18 | 13 | -48/+57 |
| | | | | | | | Remove the bundled setuptools wheel from ensurepip, and stop installing setuptools in environments created by venv. Co-Authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com> Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM> Co-authored-by: Oleg Iarygin <oleg@arhadthedev.net> | ||||
* | GH-103484: Docs: add linkcheck allowed redirects entries for most cases ↵ | Rafael Fontenelle | 2023-04-18 | 1 | -3/+8 |
| | | | | | | (#103569) Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com> | ||||
* | gh-67230: update whatsnew note for csv changes (#103598) | Skip Montanaro | 2023-04-18 | 1 | -1/+1 |
| | |||||
* | gh-103449: Fix a bug in dataclass docstring generation (#103454) | Nikita Sobolev | 2023-04-17 | 3 | -2/+21 |
| | |||||
* | gh-103092: Isolate winreg (#103250) | AN Long | 2023-04-17 | 5 | -152/+196 |
| | |||||
* | gh-103088: Ensure POSIX venv scripts always use LF line endings (GH-103591) | Steve Dower | 2023-04-17 | 4 | -2/+4 |
| | | | Also touches the affected files in meaningless ways to ensure they get updated when pulling | ||||
* | gh-101525: Fix make test if the --enable-bolt enabled (gh-103574) | Dong-hee Na | 2023-04-17 | 3 | -7/+128 |
| | |||||
* | Remove `expert-*` from `project-updater` GH workflow (#103579) | Ezio Melotti | 2023-04-17 | 1 | -2/+0 |
| | |||||
* | gh-103583: Add codecs and maps to _codecs_* module state (#103540) | Erlend E. Aasland | 2023-04-17 | 9 | -96/+161 |
| | |||||
* | gh-48330: address review comments to PR-12271 (#103209) | Giampaolo Rodola | 2023-04-16 | 3 | -11/+11 |
| | | | | | address review comments to PR-12271 Signed-off-by: Giampaolo Rodola <g.rodola@gmail.com> | ||||
* | gh-103527: Add multibytecodec.h as make dep for _codecs_* (#103567) | Erlend E. Aasland | 2023-04-16 | 1 | -6/+8 |
| | |||||
* | gh-103553: Improve `test_inspect`: add more assertions, remove unused (#103554) | Nikita Sobolev | 2023-04-15 | 1 | -15/+9 |
| | |||||
* | GH-103517: Improve tests for `pathlib.Path.walk()` (GH-103518) | Barney Gale | 2023-04-15 | 1 | -32/+45 |
| | |||||
* | gh-102114: Make dis print more concise tracebacks for syntax errors in str ↵ | chgnrdv | 2023-04-15 | 3 | -3/+11 |
| | | | | inputs (#102115) | ||||
* | GH-78079: Fix UNC device path root normalization in pathlib (GH-102003) | Barney Gale | 2023-04-14 | 4 | -3/+43 |
| | | | | | | | We no longer add a root to device paths such as `//./PhysicalDrive0`, `//?/BootPartition` and `//./c:` while normalizing. We also avoid adding a root to incomplete UNC share paths, like `//`, `//a` and `//a/`. Co-authored-by: Eryk Sun <eryksun@gmail.com> | ||||
* | gh-101517: Add regression test for a lineno bug in try/except* impacting pdb ↵ | Tian Gao | 2023-04-14 | 1 | -0/+20 |
| | | | | (#103547) | ||||
* | gh-103527: Add make deps for _codecs_* and _multibytecodec (#103528) | Erlend E. Aasland | 2023-04-14 | 1 | -0/+7 |
| | |||||
* | gh-103532: Fix reST syntax in NEWS entry (GH-103544) | Zachary Ware | 2023-04-14 | 1 | -1/+1 |
| | |||||
* | gh-103532: Add NEWS entry (#103542) | Zachary Ware | 2023-04-14 | 1 | -0/+4 |
| | |||||
* | gh-103532: Remove TKINTER_PROTECT_LOADTK code (GH-103535) | Christopher Chavez | 2023-04-14 | 3 | -79/+0 |
| | | | | This was only needed for Tk 8.4.13 and older, but Tkinter already requires at least 8.5.12. | ||||
* | gh-103180: Add CI timeouts to all GitHub Actions jobs (#103437) | Nikita Sobolev | 2023-04-14 | 8 | -3/+17 |
| | |||||
* | Remove double space in import error message (#103458) | Ned Batchelder | 2023-04-14 | 1 | -1/+1 |
| | |||||
* | ipaddress: Remove non-existent ip_str param from docstring (#103461) | Sergii Dymchenko | 2023-04-14 | 1 | -3/+0 |
| | |||||
* | Fix syntax typo in isolating extensions doc (#103516) | AN Long | 2023-04-14 | 1 | -3/+3 |
| | |||||
* | gh-103406: Modernize pos-only arguments usage in `test_signature` (#103407) | Nikita Sobolev | 2023-04-14 | 1 | -20/+11 |
| | |||||
* | Proofread howto/perf_profiling.rst (#103530) | Boris Verkhovskiy | 2023-04-14 | 1 | -10/+10 |
| | |||||
* | Fix unused functions warnings in instrumentation.c (GH-103515) | Benjamin Peterson | 2023-04-13 | 1 | -0/+4 |
| | |||||
* | gh-103479: [Enum] require __new__ to be considered a data type (GH-103495) | Ethan Furman | 2023-04-13 | 3 | -10/+14 |
| | | | a mixin must either have a __new__ method, or be a dataclass, to be interpreted as a data-type | ||||
* | gh-103365: [Enum] STRICT boundary corrections (GH-103494) | Ethan Furman | 2023-04-13 | 4 | -38/+82 |
| | | | | | | STRICT boundary: - fix bitwise operations - make default for Flag | ||||
* | GH-103488: Use return-offset, not yield-offset. (GH-103502) | Mark Shannon | 2023-04-13 | 6 | -414/+455 |
| | | | | * Use return-offset, not yield-offset, so that instruction pointer is correct when sending to a generator or coroutine. | ||||
* | gh-103088: Fix test_venv error message to avoid bytes/str warning (GH-103500) | Stanislav Syekirin | 2023-04-13 | 1 | -2/+3 |
| | |||||
* | GH-103082: Turn on branch events for FOR_ITER instructions. (#103507) | Mark Shannon | 2023-04-13 | 2 | -0/+73 |
| | | | Turn on branch events for FOR_ITER instructions. | ||||
* | gh-102978: Fix mock.patch function signatures for class and staticmethod ↵ | Tomas R | 2023-04-13 | 5 | -0/+58 |
| | | | | | | | decorators (#103228) Fixes unittest.mock.patch not enforcing function signatures for methods decorated with @classmethod or @staticmethod when patch is called with autospec=True. | ||||
* | gh-103462: Ensure SelectorSocketTransport.writelines registers a writer when ↵ | Ali-Akber Saifee | 2023-04-13 | 3 | -0/+49 |
| | | | | data is still pending (#103463) | ||||
* | gh-95299: Rework test_cppext.py to not invoke setup.py directly (#103316) | Pradyun Gedam | 2023-04-13 | 4 | -16/+20 |
| | | | | | | | | | | | | | | | | | * gh-95299: Rework test_cppext.py to not invoke setup.py directly * Add tests/cppextdata data to `TESTSUBDIRS` * Revert "Add tests/cppextdata data to `TESTSUBDIRS`" This reverts commit 635492e53954fb0fc2a2875c8961bde99266c48d. * Revert "gh-95299: Rework test_cppext.py to not invoke setup.py directly" This reverts commit 41c5a667b5de7070bbde5780f1c124f96863c91d. * Build and install the extension in a temporary directory instead * Pull in wheels for setuptools and wheel for testing extension builds | ||||
* | gh-67230: document new csv quoting modes in whatsnew (gh-103491) | Skip Montanaro | 2023-04-13 | 1 | -0/+7 |
| | |||||
* | gh-67230: add quoting rules to csv module (GH-29469) | Skip Montanaro | 2023-04-12 | 5 | -3/+43 |
| | | | | | | Add two quoting styles for csv dialects. They will help to work with certain databases in particular. Automerge-Triggered-By: GH:merwok | ||||
* | gh-103088: Fix virtual environment activate script not working in Cygwin ↵ | Stanislav Syekirin | 2023-04-12 | 3 | -0/+19 |
| | | | | (GH-103470) | ||||
* | gh-103326: Remove `Python/importlib.h` (GH-103331) | Nikita Sobolev | 2023-04-12 | 6 | -1793/+2 |
| | | | | Co-authored-by: Brett Cannon <brett@python.org> Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com> |