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 ec7c4c8Copy full SHA for ec7c4c8
stdlib/3/__future__.pyi
@@ -1,8 +1,8 @@
1
-from sys import _version_info
+import sys
2
3
class _Feature:
4
- def getOptionalRelease(self) -> _version_info: ...
5
- def getMandatoryRelease(self) -> _version_info: ...
+ def getOptionalRelease(self) -> sys._version_info: ...
+ def getMandatoryRelease(self) -> sys._version_info: ...
6
7
absolute_import = ... # type: _Feature
8
division = ... # type: _Feature
@@ -11,3 +11,6 @@ nested_scopes = ... # type: _Feature
11
print_function = ... # type: _Feature
12
unicode_literals = ... # type: _Feature
13
with_statement = ... # type: _Feature
14
+
15
+if sys.version_info[:2] >= (3, 5):
16
+ generator_stop = ... # type: _Feature
0 commit comments