https://github.com/python/cpython/commit/c11d789a4c8146367c920ce2253f33aeddf81fcf commit: c11d789a4c8146367c920ce2253f33aeddf81fcf branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: ncoghlan <[email protected]> date: 2024-07-17T02:01:03+10:00 summary:
[3.13] GH-105879: Note exec/eval keyword change in What's New (GH-121831) (#121852) GH-105879: Note exec/eval keyword change in What's New (GH-121831) (cherry picked from commit d7a099d7ae749798bd822aee5d1d46d0a335189b) Co-authored-by: Alyssa Coghlan <[email protected]> Co-authored-by: Ćukasz Langa <[email protected]> files: M Doc/whatsnew/3.13.rst diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index 992d39e3152a64..e91a9348a1a4ee 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]
