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,16 +0,0 @@
import sys
class _Feature:
def getOptionalRelease(self) -> sys._version_info: ...
def getMandatoryRelease(self) -> sys._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
if sys.version_info[:2] >= (3, 5):
generator_stop = ... # type: _Feature