summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNicholas Bastin <nick.bastin@gmail.com>2004-03-21 18:37:23 (GMT)
committerNicholas Bastin <nick.bastin@gmail.com>2004-03-21 18:37:23 (GMT)
commita7604bf1b4eebc5fca6c1edf878e1f92aa43dad0 (patch)
treedf2c77c2c6ff9096fa1b55b7c01f23c5ed9d9707 /Misc
parent8183fa46a9b81b74b63fb5b0e98d632b060f8eab (diff)
downloadcpython-a7604bf1b4eebc5fca6c1edf878e1f92aa43dad0.zip
cpython-a7604bf1b4eebc5fca6c1edf878e1f92aa43dad0.tar.gz
cpython-a7604bf1b4eebc5fca6c1edf878e1f92aa43dad0.tar.bz2
Moved tracebackobject to traceback.h, Closes SF Bug #497067
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 728d485..c0e2afe 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 2.4 alpha 1?
Core and builtins
-----------------
+- Moved tracebackobject into traceback.h and renamed to PyTracebackObject
+
- Optimized the byte coding for multiple assignments like "a,b=b,a" and
"a,b,c=1,2,3". Improves their speed by 25% to 30%.