From 54d8144bb018979ad1fd6178554cc9c600b5d8a5 Mon Sep 17 00:00:00 2001 From: Nadeem Vawda Date: Sat, 4 Feb 2012 13:58:07 +0200 Subject: [PATCH] Make BZ2File.__init__()'s fileobj argument keyword-only. --- Doc/library/bz2.rst | 2 +- Lib/bz2.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/bz2.rst b/Doc/library/bz2.rst index dbf938a2c4..7275e1263d 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. diff --git a/Lib/bz2.py b/Lib/bz2.py index 5c228f95e5..7e1a7e29c6 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 -- 2.40.0