8000 gh-95913: Edit & expand Deprecated section of 3.11 WhatsNew by CAM-Gerlach · Pull Request #98581 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-95913: Edit & expand Deprecated section of 3.11 WhatsNew #98581

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Oct 24, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update Doc/whatsnew/3.11.rst
  • Loading branch information
JelleZijlstra authored Oct 24, 2022
commit 1e86c6726b253a46a3980eedfbffca4984906727
4 changes: 2 additions & 2 deletions Doc/whatsnew/3.11.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1582,9 +1582,9 @@ Standard Library
removed in Python 3.13. Use ``locale.setlocale(locale.LC_ALL, "")`` instead.
(Contributed by Victor Stinner in :gh:`90817`.)

* More strict rules will now be applied for numerical group references
* Stricter rules will now be applied for numerical group references
and group names in :ref:`regular expressions <re-syntax>`.
Only sequences of ASCII digits will be now accepted as a numerical reference,
Only sequences of ASCII digits will now be accepted as a numerical reference,
and the group name in :class:`bytes` patterns and replacement strings
can only contain ASCII letters, digits and underscores.
For now, a deprecation warning is raised for syntax violating these rules.
Expand Down
0