summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-08-04 05:09:28 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-08-04 05:09:28 (GMT)
commit0cbd805a10b91f803bccbb5a54f8e54c2e40e9e8 (patch)
tree62229621195dcaf1c38378924227066697ef8643 /Misc/NEWS
parent4ffedadb1032a4310e756d476310d056ad209310 (diff)
downloadcpython-0cbd805a10b91f803bccbb5a54f8e54c2e40e9e8.zip
cpython-0cbd805a10b91f803bccbb5a54f8e54c2e40e9e8.tar.gz
cpython-0cbd805a10b91f803bccbb5a54f8e54c2e40e9e8.tar.bz2
Bug #1333982: string/number constants were inappropriately stored
in the byte code and co_consts even if they were not used, ie immediately popped off the stack.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6a31535..c4904da 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -17,6 +17,10 @@ Core and builtins
magic number. This means that .pyc files generated before 2.5c1
will be regenerated.
+- Bug #1333982: string/number constants were inappropriately stored
+ in the byte code and co_consts even if they were not used, ie
+ immediately popped off the stack.
+
Library
-------