summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorLars Gustäbel <lars@gustaebel.de>2009-08-28 19:59:59 (GMT)
committerLars Gustäbel <lars@gustaebel.de>2009-08-28 19:59:59 (GMT)
commitbfdfdda1067ae32f72040a0b6aefa5807e41da51 (patch)
tree3a38857be9246ebb0b23a3560217a376990f4761 /Misc
parentd314e1b9291544640a9a85542b335d692a9576b6 (diff)
downloadcpython-bfdfdda1067ae32f72040a0b6aefa5807e41da51.zip
cpython-bfdfdda1067ae32f72040a0b6aefa5807e41da51.tar.gz
cpython-bfdfdda1067ae32f72040a0b6aefa5807e41da51.tar.bz2
Merged revisions 74571 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r74571 | lars.gustaebel | 2009-08-28 21:23:44 +0200 (Fri, 28 Aug 2009) | 7 lines Issue #6054: Do not normalize stored pathnames. No longer use tarfile.normpath() on pathnames. Store pathnames unchanged, i.e. do not remove "./", "../" and "//" occurrences. However, still convert absolute to relative paths. ........
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 687f31c..d187299 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -65,6 +65,8 @@ C-API
Library
-------
+- Issue #6054: Do not normalize stored pathnames in tarfile.
+
- Issue #6794: Fix Decimal.compare_total and Decimal.compare_total_mag: NaN
payloads are now ordered by integer value rather than lexicographically.