Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e66b7fa commit 97101b1Copy full SHA for 97101b1
3 files changed
pyrightconfig.json
@@ -6,6 +6,7 @@
6
],
7
"exclude": [
8
"**/@python2",
9
+ "stdlib/__main__.pyi",
10
"stdlib/encodings",
11
"stdlib/sqlite3/dbapi2.pyi",
12
"stdlib/tkinter",
stdlib/VERSIONS
@@ -1,4 +1,5 @@
1
__future__: 2.7
2
+__main__: 2.7
3
_ast: 3.6
4
_bisect: 2.7
5
_bootlocale: 3.6
stdlib/__main__.pyi
@@ -0,0 +1,3 @@
+from typing import Any
+
+def __getattr__(name: str) -> Any: ...
0 commit comments