You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This seems to be a real issue that stems from all of the fields being listed as part of a namedtuple in the typeshed stub, when only 9 of them are part of the tuple and the rest are just attributes.
The bug should be filed against typeshed, though.
Thanks!
The following code:
produces the following output:
reveal_type(gmtime)
produces the following output:Revealed type is 'def (secs: Union[builtins.float, None] =) -> Tuple[builtins.int, builtins.int, builtins.int, builtins.int, builtins.int, builtins.int, builtins.int, builtins.int, builtins.int, builtins.str, builtins.int, fallback=time.struct_time]
The text was updated successfully, but these errors were encountered: