summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSjoerd Mullender <sjoerd@acm.org>2007-01-16 16:42:38 (GMT)
committerSjoerd Mullender <sjoerd@acm.org>2007-01-16 16:42:38 (GMT)
commit33a0a06d318a3d7164f6269c209b2309781af767 (patch)
tree88f61b958cde2b25523598a1ee9486ce6fd66074 /Misc
parentfa3d08b4a92d8af3ec458137393b151a1a0b4391 (diff)
downloadcpython-33a0a06d318a3d7164f6269c209b2309781af767.zip
cpython-33a0a06d318a3d7164f6269c209b2309781af767.tar.gz
cpython-33a0a06d318a3d7164f6269c209b2309781af767.tar.bz2
Fixed ntpath.expandvars to not replace references to non-existing
variables with nothing. Also added tests. This fixes bug #494589.
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 b889b09..3d742f5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -109,6 +109,8 @@ Core and builtins
Library
-------
+- Bug #494589: make ntpath.expandvars behave according to its docstring.
+
- Changed platform module API python_version_tuple() to actually
return a tuple (it used to return a list)