https://github.com/python/cpython/commit/d7a099d7ae749798bd822aee5d1d46d0a335189b commit: d7a099d7ae749798bd822aee5d1d46d0a335189b branch: main author: Alyssa Coghlan <[email protected]> committer: ncoghlan <[email protected]> date: 2024-07-16T13:24:45Z summary:
GH-105879: Note exec/eval keyword change in What's New (GH-121831) files: M Doc/whatsnew/3.13.rst diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index 4a9a0b77d068b3..ca0d91d6f65416 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -422,6 +422,10 @@ free-threaded build. Other Language Changes ====================== +* The :func:`exec` and :func:`eval` built-ins now accept their ``globals`` + and ``locals`` namespace arguments as keywords. + (Contibuted by Raphael Gaschignard in :gh:`105879`) + * Allow the *count* argument of :meth:`str.replace` to be a keyword. (Contributed by Hugo van Kemenade in :gh:`106487`.) _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
