summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-07-16 01:50:38 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-07-16 01:50:38 (GMT)
commit84be93b2db7e8c351bc5f25991c14a1384b5b523 (patch)
tree5f96b1585c52ccbc422aa01372a51862b326d9bf /Misc
parentec5948aae223e8f4d1ffd86f9eea92aa5ebe7304 (diff)
downloadcpython-84be93b2db7e8c351bc5f25991c14a1384b5b523.zip
cpython-84be93b2db7e8c351bc5f25991c14a1384b5b523.tar.gz
cpython-84be93b2db7e8c351bc5f25991c14a1384b5b523.tar.bz2
Bug #1512814, Fix incorrect lineno's when code within a function
had more than 255 blank lines. Byte codes need to go first, line #s second.
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 928c1b8..f3834bb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.5 release candidate 1?
Core and builtins
-----------------
+- Bug #1512814, Fix incorrect lineno's when code within a function
+ had more than 255 blank lines.
+
- Patch #1521179: Python now accepts the standard options ``--help`` and
``--version`` as well as ``/?`` on Windows.