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

This commit is contained in:
Nadeem Vawda 2012-02-04 13:58:07 +02:00
parent cac8909d0c
commit 54d8144bb0
2 changed files with 2 additions and 2 deletions

View 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