Move __future__ module into 2and3 (#1140)

* Merge __future__

* Move __future__ into 2and3
This commit is contained in:
David Euresti
2017-04-05 16:54:46 -04:00
committed by Matthias Kramm
parent 26f5ffd5ba
commit 8401fc6838
2 changed files with 0 additions and 13 deletions

View File

@@ -1,13 +0,0 @@
from sys import _version_info
class _Feature:
def getOptionalRelease(self) -> _version_info: ...
def getMandatoryRelease(self) -> _version_info: ...
absolute_import = ... # type: _Feature
division = ... # type: _Feature
generators = ... # type: _Feature
nested_scopes = ... # type: _Feature
print_function = ... # type: _Feature
unicode_literals = ... # type: _Feature
with_statement = ... # type: _Feature