Add methods to __future__._Feature

This commit is contained in:
Ben Darnell
2016-04-10 19:50:26 -04:00
parent 8c59f8f58e
commit 0248a5cbcf

View File

@@ -1,4 +1,8 @@
class _Feature: ...
from sys import _version_info
class _Feature:
def getOptionalRelease(self) -> _version_info: ...
def getMandatoryRelease(self) -> _version_info: ...
absolute_import = ... # type: _Feature
division = ... # type: _Feature