Thanks to visit codestin.com Credit goes to github.com
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 9f06ff9 commit 25af5eaCopy full SHA for 25af5ea
1 file changed
Lib/wsgiref/types.py
@@ -13,8 +13,8 @@
13
"FileWrapper",
14
]
15
16
-_ExcInfo = tuple[type[BaseException], BaseException, TracebackType]
17
-_OptExcInfo = _ExcInfo | tuple[None, None, None]
+_ExcInfo: TypeAlias = tuple[type[BaseException], BaseException, TracebackType]
+_OptExcInfo: TypeAlias = _ExcInfo | tuple[None, None, None]
18
19
class StartResponse(Protocol):
20
"""start_response() callable as defined in PEP 3333"""
0 commit comments