Skip to content

Commit 4285ba4

Browse files
committed
Add __future__.generator_stop for Python 3.5
1 parent 33fe6a0 commit 4285ba4

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

stdlib/3.5/__future__.pyi

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)