From 8401fc683841f3c569f819dbc226d50ea0c8796d Mon Sep 17 00:00:00 2001 From: David Euresti Date: Wed, 5 Apr 2017 16:54:46 -0400 Subject: [PATCH] Move __future__ module into 2and3 (#1140) * Merge __future__ * Move __future__ into 2and3 --- stdlib/2/__future__.pyi | 13 ------------- stdlib/{3 => 2and3}/__future__.pyi | 0 2 files changed, 13 deletions(-) delete mode 100644 stdlib/2/__future__.pyi rename stdlib/{3 => 2and3}/__future__.pyi (100%) diff --git a/stdlib/2/__future__.pyi b/stdlib/2/__future__.pyi deleted file mode 100644 index 241406974..000000000 --- a/stdlib/2/__future__.pyi +++ /dev/null @@ -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 diff --git a/stdlib/3/__future__.pyi b/stdlib/2and3/__future__.pyi similarity index 100% rename from stdlib/3/__future__.pyi rename to stdlib/2and3/__future__.pyi