summaryrefslogtreecommitdiffstats
path: root/Lib/bz2.py
diff options
context:
space:
mode:
authorNadeem Vawda <nadeem.vawda@gmail.com>2012-02-04 11:58:07 (GMT)
committerNadeem Vawda <nadeem.vawda@gmail.com>2012-02-04 11:58:07 (GMT)
commit54d8144bb018979ad1fd6178554cc9c600b5d8a5 (patch)
tree864985de1a5b12dfcecf08c539e98a52bee0c603 /Lib/bz2.py
parentcac8909d0cfe0f52fd0a0409ca58d46b34e58962 (diff)
downloadcpython-54d8144bb018979ad1fd6178554cc9c600b5d8a5.zip
cpython-54d8144bb018979ad1fd6178554cc9c600b5d8a5.tar.gz
cpython-54d8144bb018979ad1fd6178554cc9c600b5d8a5.tar.bz2
Make BZ2File.__init__()'s fileobj argument keyword-only.
Diffstat (limited to 'Lib/bz2.py')
-rw-r--r--Lib/bz2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/bz2.py b/Lib/bz2.py
index 5c228f9..7e1a7e2 100644
--- a/Lib/bz2.py
+++ b/Lib/bz2.py
@@ -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