summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBatuhan Taşkaya <47358913+isidentical@users.noreply.github.com>2020-01-12 22:13:31 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-01-12 22:13:31 (GMT)
commit61b14151cc92021a10f94765eaa152ed04eb262a (patch)
treebe6f59fe41c8da9aa600ebe006701a640c5a2a85 /Misc
parent14dbe4b3f0a888a60e8cc20f3df5aa09c8bb82c3 (diff)
downloadcpython-61b14151cc92021a10f94765eaa152ed04eb262a.zip
cpython-61b14151cc92021a10f94765eaa152ed04eb262a.tar.gz
cpython-61b14151cc92021a10f94765eaa152ed04eb262a.tar.bz2
bpo-39313: Add an option to RefactoringTool for using exec as a function (GH-17967)
https://bugs.python.org/issue39313 Automerge-Triggered-By: @pablogsal
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2020-01-12-18-17-00.bpo-39313.DCTsnm.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-01-12-18-17-00.bpo-39313.DCTsnm.rst b/Misc/NEWS.d/next/Library/2020-01-12-18-17-00.bpo-39313.DCTsnm.rst
new file mode 100644
index 0000000..784d73c
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-01-12-18-17-00.bpo-39313.DCTsnm.rst
@@ -0,0 +1,2 @@
+Add a new ``exec_function`` option (*--exec-function* in the CLI) to
+``RefactoringTool`` for making ``exec`` a function. Patch by Batuhan Taskaya.