summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorNadeem Vawda <nadeem.vawda@gmail.com>2012-02-04 12:06:07 (GMT)
committerNadeem Vawda <nadeem.vawda@gmail.com>2012-02-04 12:06:07 (GMT)
commitd85d0e724714d76c8ab8b42f5293313d1bd3784d (patch)
tree8f7c9fba58a56350c7cb6525826bba32ddf18639 /Doc
parent54d8144bb018979ad1fd6178554cc9c600b5d8a5 (diff)
downloadcpython-d85d0e724714d76c8ab8b42f5293313d1bd3784d.zip
cpython-d85d0e724714d76c8ab8b42f5293313d1bd3784d.tar.gz
cpython-d85d0e724714d76c8ab8b42f5293313d1bd3784d.tar.bz2
Document that some of LZMAFile.__init__()'s args are keyword-only.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/lzma.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/lzma.rst b/Doc/library/lzma.rst
index 3941ec1..fc0a148 100644
--- a/Doc/library/lzma.rst
+++ b/Doc/library/lzma.rst
@@ -32,7 +32,7 @@ from multiple threads, it is necessary to protect it with a lock.
Reading and writing compressed files
------------------------------------
-.. class:: LZMAFile(filename=None, mode="r", fileobj=None, format=None, check=-1, preset=None, filters=None)
+.. class:: LZMAFile(filename=None, mode="r", \*, fileobj=None, format=None, check=-1, preset=None, filters=None)
Open an LZMA-compressed file.