summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-10-28 21:19:07 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-10-28 21:19:07 (GMT)
commit21997afb0c764d5eb50dbe52249d838a597c0a08 (patch)
treee118a87953cd76f730255d9f3cb9e3017a219068 /Misc/NEWS
parent97a57220e8cfd857c7f46ec9d71f9f841c241fa8 (diff)
downloadcpython-21997afb0c764d5eb50dbe52249d838a597c0a08.zip
cpython-21997afb0c764d5eb50dbe52249d838a597c0a08.tar.gz
cpython-21997afb0c764d5eb50dbe52249d838a597c0a08.tar.bz2
Fix bug #1565514, SystemError not raised on too many nested blocks.
It seems like this should be a different error than SystemError, but I don't have any great ideas and SystemError was raised in 2.4 and earlier. Will backport.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 05930e9..fa287ea 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 2.6 alpha 1?
Core and builtins
-----------------
+- Bug #1565514, SystemError not raised on too many nested blocks.
+
- Bug #1576174: WindowsError now displays the windows error code
again, no longer the posix error code.