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)
diff --git a/Misc/NEWS b/Misc/NEWS
index e3a3cb2..26b8b79 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@
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.