mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-06 20:24:30 +08:00
Use type annotation syntax (#3048)
This commit is contained in:
committed by
Jelle Zijlstra
parent
901cb33a3c
commit
5327484176
@@ -72,8 +72,8 @@ if sys.version_info < (3,):
|
||||
|
||||
if sys.version_info >= (3, 5):
|
||||
class TracebackException:
|
||||
__cause__ = ... # type:TracebackException
|
||||
__context__ = ... # type:TracebackException
|
||||
__cause__: TracebackException
|
||||
__context__: TracebackException
|
||||
__suppress_context__: bool
|
||||
stack: StackSummary
|
||||
exc_type: Type[BaseException]
|
||||
|
||||
Reference in New Issue
Block a user