summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBatuhan Taşkaya <47358913+isidentical@users.noreply.github.com>2019-05-20 20:27:10 (GMT)
committerGuido van Rossum <guido@python.org>2019-05-20 20:27:10 (GMT)
commit4011d865d0572a3dd9988f2935cd835cc8fb792a (patch)
tree93ea5715395f54d250ba5b58e66fc951607e9c47 /Misc
parentc09a9f56c08d80567454cae6f78f738a89e1ae94 (diff)
downloadcpython-4011d865d0572a3dd9988f2935cd835cc8fb792a.zip
cpython-4011d865d0572a3dd9988f2935cd835cc8fb792a.tar.gz
cpython-4011d865d0572a3dd9988f2935cd835cc8fb792a.tar.bz2
bpo-23896: Add a grammar where exec isn't a stmt (#13272)
https://bugs.python.org/issue23896
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS.d/next/Library/2019-05-13-05-49-15.bpo-23896.8TtUKo.rst2
2 files changed, 3 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index f9d01d0..87107b9 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1860,3 +1860,4 @@ Carsten Klein
Diego Rojas
Edison Abahurire
Geoff Shannon
+Batuhan Taskaya
diff --git a/Misc/NEWS.d/next/Library/2019-05-13-05-49-15.bpo-23896.8TtUKo.rst b/Misc/NEWS.d/next/Library/2019-05-13-05-49-15.bpo-23896.8TtUKo.rst
new file mode 100644
index 0000000..3c15482
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-05-13-05-49-15.bpo-23896.8TtUKo.rst
@@ -0,0 +1,2 @@
+Adds a grammar to lib2to3.pygram that contains exec as a function not as
+statement.