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 33fe6a0 commit 4285ba4Copy full SHA for 4285ba4
stdlib/3.5/__future__.pyi
@@ -0,0 +1,14 @@
1
+from sys import _version_info
2
+
3
+class _Feature:
4
+ def getOptionalRelease(self) -> _version_info: ...
5
+ def getMandatoryRelease(self) -> _version_info: ...
6
7
+absolute_import = ... # type: _Feature
8
+division = ... # type: _Feature
9
+generators = ... # type: _Feature
10
+nested_scopes = ... # type: _Feature
11
+print_function = ... # type: _Feature
12
+unicode_literals = ... # type: _Feature
13
+with_statement = ... # type: _Feature
14
+generator_stop = ... # type: _Feature
0 commit comments