Kaydet (Commit) 54d8144b authored tarafından Nadeem Vawda's avatar Nadeem Vawda

Make BZ2File.__init__()'s fileobj argument keyword-only.

üst cac8909d
......@@ -29,7 +29,7 @@ All of the classes in this module may safely be accessed from multiple threads.
(De)compression of files
------------------------
.. class:: BZ2File(filename=None, mode='r', buffering=None, compresslevel=9, fileobj=None)
.. class:: BZ2File(filename=None, mode='r', buffering=None, compresslevel=9, \*, fileobj=None)
Open a bzip2-compressed file.
......
......@@ -40,7 +40,7 @@ class BZ2File(io.BufferedIOBase):
"""
def __init__(self, filename=None, mode="r", buffering=None,
compresslevel=9, fileobj=None):
compresslevel=9, *, fileobj=None):
"""Open a bzip2-compressed file.
If filename is given, open the named file. Otherwise, operate on
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment