From d85d0e724714d76c8ab8b42f5293313d1bd3784d Mon Sep 17 00:00:00 2001 From: Nadeem Vawda Date: Sat, 4 Feb 2012 14:06:07 +0200 Subject: [PATCH] Document that some of LZMAFile.__init__()'s args are keyword-only. --- Doc/library/lzma.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/lzma.rst b/Doc/library/lzma.rst index 3941ec18d07..fc0a148524a 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.