summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorINADA Naoki <methane@users.noreply.github.com>2017-12-14 07:47:20 (GMT)
committerGitHub <noreply@github.com>2017-12-14 07:47:20 (GMT)
commit7ea143ae795a9fd57eaccf490d316bdc13ee9065 (patch)
tree1276bfc657c9a9281c6152ed656a89abdaaff4b8 /Misc
parentb5fd9ad05e0f15f8272b8f1b829af22077230584 (diff)
downloadcpython-7ea143ae795a9fd57eaccf490d316bdc13ee9065.zip
cpython-7ea143ae795a9fd57eaccf490d316bdc13ee9065.tar.gz
cpython-7ea143ae795a9fd57eaccf490d316bdc13ee9065.tar.bz2
bpo-29469: Move constant folding to AST optimizer (GH-2858)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2017-07-26-00-20-15.bpo-29469.potmyI.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2017-07-26-00-20-15.bpo-29469.potmyI.rst b/Misc/NEWS.d/next/Core and Builtins/2017-07-26-00-20-15.bpo-29469.potmyI.rst
new file mode 100644
index 0000000..138a913
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2017-07-26-00-20-15.bpo-29469.potmyI.rst
@@ -0,0 +1,2 @@
+Move constant folding from bytecode layer to AST layer.
+Original patch by Eugene Toder.