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 6fc8828 commit de4d436Copy full SHA for de4d436
stdlib/3/io.pyi
@@ -171,6 +171,16 @@ class TextIOWrapper(TextIO):
171
line_buffering: bool = ...,
172
write_through: bool = ...
173
) -> None: ...
174
+ if sys.version_info >= (3, 7):
175
+ def reconfigure(
176
+ self,
177
+ *,
178
+ encoding: Optional[str] = ...,
179
+ errors: Optional[str] = ...,
180
+ newline: Optional[str] = ...,
181
+ line_buffering: Optional[bool] = ...,
182
+ write_through: Optional[bool] = ...
183
+ ) -> None: ...
184
# copied from IOBase
185
def __exit__(self, t: Optional[Type[BaseException]] = ..., value: Optional[BaseException] = ...,
186
traceback: Optional[TracebackType] = ...) -> Optional[bool]: ...
0 commit comments