diff options
author | Elazar Gershuni <elazarg@gmail.com> | 2020-05-28 00:41:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-28 00:41:24 (GMT) |
commit | 56853d8ec6ed89bf5a9b81c3781a4df46ac391d3 (patch) | |
tree | 03931dfaadf2017ffe0273cca528564cd2dbe2ca /Doc | |
parent | aa890630bc877c73ec806c9982d8b7b2e7019723 (diff) | |
download | cpython-56853d8ec6ed89bf5a9b81c3781a4df46ac391d3.zip cpython-56853d8ec6ed89bf5a9b81c3781a4df46ac391d3.tar.gz cpython-56853d8ec6ed89bf5a9b81c3781a4df46ac391d3.tar.bz2 |
bpo-39939: Fix removeprefix issue number in the What's New in Python 3.9 (GH-20473)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.9.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index 8a04f72..35496d7 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -113,7 +113,7 @@ PEP 616: New removeprefix() and removesuffix() string methods to easily remove an unneeded prefix or a suffix from a string. Corresponding ``bytes``, ``bytearray``, and ``collections.UserString`` methods have also been added. See :pep:`616` for a full description. (Contributed by Dennis Sweeney in -:issue:`18939`.) +:issue:`39939`.) PEP 585: Builtin Generic Types ------------------------------ |