summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2010-10-14 21:10:45 (GMT)
committerFlorent Xicluna <florent.xicluna@gmail.com>2010-10-14 21:10:45 (GMT)
commitb67660fcceabd6cac7d4dea593db34bffa52dc98 (patch)
tree10c6171fc7153e8584473d03c0db60d7325cd292 /Misc
parent8299393122a1f5e807f065ceb59488f3ab486586 (diff)
downloadcpython-b67660fcceabd6cac7d4dea593db34bffa52dc98.zip
cpython-b67660fcceabd6cac7d4dea593db34bffa52dc98.tar.gz
cpython-b67660fcceabd6cac7d4dea593db34bffa52dc98.tar.bz2
Merged revisions 85495 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85495 | florent.xicluna | 2010-10-14 22:56:20 +0200 (jeu., 14 oct. 2010) | 3 lines Fix the regex to match all kind of filenames, for interactive debugging in doctests. (issue #9409) ........
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 2db45e6..d7f6d1f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -51,6 +51,9 @@ Core and Builtins
Library
-------
+- Issue 9409: Fix the regex to match all kind of filenames, for interactive
+ debugging in doctests.
+
- Issue #6612: Fix site and sysconfig to catch os.getcwd() error, eg. if the
current directory was deleted. Patch written by W. Trevor King.