mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
Make FrameType.f_back optional (#3740)
This commit is contained in:
@@ -248,7 +248,7 @@ class TracebackType:
|
||||
def tb_lineno(self) -> int: ...
|
||||
|
||||
class FrameType:
|
||||
f_back: FrameType
|
||||
f_back: Optional[FrameType]
|
||||
f_builtins: Dict[str, Any]
|
||||
f_code: CodeType
|
||||
f_globals: Dict[str, Any]
|
||||
|
||||
Reference in New Issue
Block a user