diff options
author | Brett Cannon <bcannon@gmail.com> | 2004-07-10 20:42:22 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2004-07-10 20:42:22 (GMT) |
commit | bdc36273a2e1cd4a3985f44261e3c9df5c8a19cc (patch) | |
tree | 8a725fdf56a266d62d3b6c50b7f1d880165f6460 /Misc | |
parent | 85064ffd760687c395f65f74c36d573d94b98436 (diff) | |
download | cpython-bdc36273a2e1cd4a3985f44261e3c9df5c8a19cc.zip cpython-bdc36273a2e1cd4a3985f44261e3c9df5c8a19cc.tar.gz cpython-bdc36273a2e1cd4a3985f44261e3c9df5c8a19cc.tar.bz2 |
Make ntpath compress multiple slashes between drive letter and the rest of the
path. Also clarifies UNC handling and adds appropriate tests.
Applies patch #988607 to fix bug #980327. Thanks Paul Moore.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -26,6 +26,10 @@ Extension modules Library ------- +- Bug #980327: ntpath not handles compressing erroneous slashes between the + drive letter and the rest of the path. Also clearly handles UNC addresses now + as well. Thanks Paul Moore. + - bug #679953: zipfile.py should now work for files over 2 GB. The packed data for file sizes (compressed and uncompressed) was being stored as signed instead of unsigned. |