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 e90c6f1 commit ec5246bCopy full SHA for ec5246b
stubs/WebOb/webob/compat.pyi
@@ -1,5 +1,6 @@
1
import sys
2
from html import escape as escape
3
+from io import FileIO, TextIOWrapper
4
from queue import Empty as Empty, Queue as Queue
5
from typing import IO
6
@@ -8,6 +9,7 @@ if sys.version_info >= (3, 13):
8
9
class cgi_FieldStorage:
10
filename: str
11
file: IO[bytes]
12
+ def make_file(self) -> TextIOWrapper | FileIO: ...
13
14
def parse_header(line: str) -> tuple[str, dict[str, str]]: ...
15
0 commit comments