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
open typeshed/stdlib/sys/init.pyi, add from typing import Optional, Tuple, Type to typeshed/stdlib/sys/init.pyi
open typeshed/stdlib/sys/init.pyi, change
With this instead:
def exc_info() -> Tuple[Optional[Type[BaseException]],
Optional[BaseException],
Optional[_version_info]]: …
2.create a PythonApplication1.py, enter the local path on disk where you cloned the repository
Options
3.Restart VS and enter the following code
import sys
e1,e2,e3=sys.exc_info()
Expected behavior
It should now report e3 as being a version info instance
Additional context and screenshots
The type information has not changed with latest typeshed.
The text was updated successfully, but these errors were encountered:
Environment
Steps to Reproduce
1.git clone https://github.com/python/typeshed
open typeshed/stdlib/sys/init.pyi, add from typing import Optional, Tuple, Type to typeshed/stdlib/sys/init.pyi
open typeshed/stdlib/sys/init.pyi, change
With this instead:
def exc_info() -> Tuple[Optional[Type[BaseException]],
Optional[BaseException],
Optional[_version_info]]: …
2.create a PythonApplication1.py, enter the local path on disk where you cloned the repository
Options
3.Restart VS and enter the following code
import sys
e1,e2,e3=sys.exc_info()
Expected behavior
It should now report e3 as being a version info instance
Additional context and screenshots
The type information has not changed with latest typeshed.
The text was updated successfully, but these errors were encountered: