We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a824afe commit ff7fe24Copy full SHA for ff7fe24
stdlib/3.3/lzma.pyi
@@ -68,7 +68,7 @@ class LZMACompressor(object):
68
69
class LZMAFile(BinaryIO):
70
def __init__(self,
71
- filename: _PathOrFile = ...,
+ filename: Optional[_PathOrFile] = ...,
72
mode: str = ...,
73
*,
74
format: Optional[int] = ...,
@@ -91,7 +91,7 @@ class LZMAFile(BinaryIO):
91
def tell(self) -> int: ...
92
93
94
-def open(filename: _PathOrFile = ...,
+def open(filename: _PathOrFile,
95
96
97
0 commit comments