diff options
author | Nadeem Vawda <nadeem.vawda@gmail.com> | 2012-02-04 11:58:07 (GMT) |
---|---|---|
committer | Nadeem Vawda <nadeem.vawda@gmail.com> | 2012-02-04 11:58:07 (GMT) |
commit | 54d8144bb018979ad1fd6178554cc9c600b5d8a5 (patch) | |
tree | 864985de1a5b12dfcecf08c539e98a52bee0c603 /Doc | |
parent | cac8909d0cfe0f52fd0a0409ca58d46b34e58962 (diff) | |
download | cpython-54d8144bb018979ad1fd6178554cc9c600b5d8a5.zip cpython-54d8144bb018979ad1fd6178554cc9c600b5d8a5.tar.gz cpython-54d8144bb018979ad1fd6178554cc9c600b5d8a5.tar.bz2 |
Make BZ2File.__init__()'s fileobj argument keyword-only.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/bz2.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/bz2.rst b/Doc/library/bz2.rst index dbf938a..7275e12 100644 --- a/Doc/library/bz2.rst +++ b/Doc/library/bz2.rst @@ -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. |