summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-08-04 08:25:03 (GMT)
committerGeorg Brandl <georg@python.org>2008-08-04 08:25:03 (GMT)
commit8c66a6d25f0c164652f075aa95b1c4ec339a0eec (patch)
treef896bfc49760ceeba5455e8435c0d209e115888b
parent655c641ad1d18b5123202f1f8eb223d9c6365c85 (diff)
downloadcpython-8c66a6d25f0c164652f075aa95b1c4ec339a0eec.zip
cpython-8c66a6d25f0c164652f075aa95b1c4ec339a0eec.tar.gz
cpython-8c66a6d25f0c164652f075aa95b1c4ec339a0eec.tar.bz2
Remove the deprecated posix attribute.
-rw-r--r--Doc/library/tarfile.rst12
-rw-r--r--Lib/tarfile.py11
2 files changed, 0 insertions, 23 deletions
diff --git a/Doc/library/tarfile.rst b/Doc/library/tarfile.rst
index b7ca062..8ec7d86 100644
--- a/Doc/library/tarfile.rst
+++ b/Doc/library/tarfile.rst
@@ -393,18 +393,6 @@ object, see :ref:`tarinfo-objects` for details.
appended to the archive.
-.. attribute:: TarFile.posix
-
- Setting this to :const:`True` is equivalent to setting the :attr:`format`
- attribute to :const:`USTAR_FORMAT`, :const:`False` is equivalent to
- :const:`GNU_FORMAT`.
-
- *posix* defaults to :const:`False`.
-
- .. deprecated:: 2.6
- Use the :attr:`format` attribute instead.
-
-
.. attribute:: TarFile.pax_headers
A dictionary containing key-value pairs of pax global headers.
diff --git a/Lib/tarfile.py b/Lib/tarfile.py
index 607dbfa..ecb32f6 100644
--- a/Lib/tarfile.py
+++ b/Lib/tarfile.py
@@ -1577,17 +1577,6 @@ class TarFile(object):
self.fileobj.write(buf)
self.offset += len(buf)
- def _getposix(self):
- return self.format == USTAR_FORMAT
- def _setposix(self, value):
- import warnings
- warnings.warn("use the format attribute instead", DeprecationWarning)
- if value:
- self.format = USTAR_FORMAT
- else:
- self.format = GNU_FORMAT
- posix = property(_getposix, _setposix)
-
#--------------------------------------------------------------------------
# Below are the classmethods which act as alternate constructors to the
# TarFile class. The open() method is the only one that is needed for