summaryrefslogtreecommitdiffstats
path: root/Doc/library/gzip.rst
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-10-02 10:47:58 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-10-02 10:47:58 (GMT)
commit03020cfa97b6c2c80f50fb2d07025aff49c3513c (patch)
treee5198c265c47cddc2e9dcfeeb770cd98bc0f1109 /Doc/library/gzip.rst
parent8e9045d0d8b612e5f8231e5c854625ff78a4b110 (diff)
downloadcpython-03020cfa97b6c2c80f50fb2d07025aff49c3513c.zip
cpython-03020cfa97b6c2c80f50fb2d07025aff49c3513c.tar.gz
cpython-03020cfa97b6c2c80f50fb2d07025aff49c3513c.tar.bz2
Issue #28227: gzip now supports pathlib
Patch by Ethan Furman.
Diffstat (limited to 'Doc/library/gzip.rst')
-rw-r--r--Doc/library/gzip.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/gzip.rst b/Doc/library/gzip.rst
index 792d57a..9c6b722 100644
--- a/Doc/library/gzip.rst
+++ b/Doc/library/gzip.rst
@@ -56,6 +56,8 @@ The module defines the following items:
.. versionchanged:: 3.4
Added support for the ``'x'``, ``'xb'`` and ``'xt'`` modes.
+ .. versionchanged:: 3.6
+ Accepts a :term:`path-like object`.
.. class:: GzipFile(filename=None, mode=None, compresslevel=9, fileobj=None, mtime=None)
@@ -151,6 +153,9 @@ The module defines the following items:
The :meth:`~io.BufferedIOBase.read` method now accepts an argument of
``None``.
+ .. versionchanged:: 3.6
+ Accepts a :term:`path-like object`.
+
.. function:: compress(data, compresslevel=9)