summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorCAM Gerlach <CAM.Gerlach@Gerlach.CAM>2019-03-21 14:44:51 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2019-03-21 14:44:51 (GMT)
commite680c3db80efc4a1d637dd871af21276db45ae03 (patch)
tree80df96129febac2d0a6bb1e8463f1785f96996ae /Doc/whatsnew
parented5e29cba500c2336aacdb7c77953f1064235b72 (diff)
downloadcpython-e680c3db80efc4a1d637dd871af21276db45ae03.zip
cpython-e680c3db80efc4a1d637dd871af21276db45ae03.tar.gz
cpython-e680c3db80efc4a1d637dd871af21276db45ae03.tar.bz2
bpo-36268: Change default tar format to pax from GNU. (GH-12355)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.8.rst10
1 files changed, 10 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst
index 2e311ab..18ec2c2 100644
--- a/Doc/whatsnew/3.8.rst
+++ b/Doc/whatsnew/3.8.rst
@@ -316,6 +316,16 @@ and manipulating normal distributions of a random variable.
[7.672102882379219, 12.000027119750287, 4.647488369766392]
+tarfile
+-------
+
+The :mod:`tarfile` module now defaults to the modern pax (POSIX.1-2001)
+format for new archives, instead of the previous GNU-specific one.
+This improves cross-platform portability with a consistent encoding (UTF-8)
+in a standardized and extensible format, and offers several other benefits.
+(Contributed by C.A.M. Gerlach in :issue:`36268`.)
+
+
tokenize
--------