mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
types.CodeType.co_filename isn't Optional. (#2639)
This commit is contained in:
committed by
Jelle Zijlstra
parent
f9ba5402f8
commit
1857435e6f
@@ -47,7 +47,7 @@ class CodeType:
|
||||
co_consts = ... # type: Tuple[Any, ...]
|
||||
co_names = ... # type: Tuple[str, ...]
|
||||
co_varnames = ... # type: Tuple[str, ...]
|
||||
co_filename = ... # type: Optional[str]
|
||||
co_filename = ... # type: str
|
||||
co_name = ... # type: str
|
||||
co_firstlineno = ... # type: int
|
||||
co_lnotab = ... # type: bytes
|
||||
|
||||
Reference in New Issue
Block a user