diff options
author | INADA Naoki <methane@users.noreply.github.com> | 2017-12-14 07:47:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-14 07:47:20 (GMT) |
commit | 7ea143ae795a9fd57eaccf490d316bdc13ee9065 (patch) | |
tree | 1276bfc657c9a9281c6152ed656a89abdaaff4b8 /Misc | |
parent | b5fd9ad05e0f15f8272b8f1b829af22077230584 (diff) | |
download | cpython-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.rst | 2 |
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. |