summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2008-03-07 14:13:28 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2008-03-07 14:13:28 (GMT)
commit7af53be66f8c074902e0e7e7c452a280538582bc (patch)
treec2d5933745c44a5099ceadb4f81bc7aa82dfe1c1 /Misc
parente75f59a578a4538451c1d96610a6d183ba8f2e81 (diff)
downloadcpython-7af53be66f8c074902e0e7e7c452a280538582bc.zip
cpython-7af53be66f8c074902e0e7e7c452a280538582bc.tar.gz
cpython-7af53be66f8c074902e0e7e7c452a280538582bc.tar.bz2
Speed up with statements by storing the __exit__ method on the stack instead of in a temp variable (bumps the magic number for pyc files)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e3a3cb2..26b8b79 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.6 alpha 2?
Core and builtins
-----------------
+- Issue #2179: speed up with statement execution by storing the exit method
+ on the stack instead of in a temporary variable (patch by Jeffrey Yaskin)
+
- Issue #2238: Some syntax errors in *args and **kwargs expressions could give
bogus error messages.