mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Make BZ2File.__init__()'s fileobj argument keyword-only.
This commit is contained in:
parent
cac8909d0c
commit
54d8144bb0
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue