From: Nadeem Vawda Date: Sat, 4 Feb 2012 12:06:07 +0000 (+0200) Subject: Document that some of LZMAFile.__init__()'s args are keyword-only. X-Git-Tag: v3.3.0a1~252 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d85d0e724714d76c8ab8b42f5293313d1bd3784d;p=python Document that some of LZMAFile.__init__()'s args are keyword-only. --- diff --git a/Doc/library/lzma.rst b/Doc/library/lzma.rst index 3941ec18d0..fc0a148524 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.