Remove invalid Python 3 syntax

This commit is contained in:
David Fisher
2016-02-18 16:25:30 -08:00
parent 4292211da9
commit 48b3b260d1
2 changed files with 0 additions and 8 deletions

View File

@@ -629,10 +629,6 @@ class module:
__file__ = ... # type: str
__dict__ = ... # type: Dict[unicode, Any]
True = ... # type: bool
False = ... # type: bool
__debug__ = False
long = int
bytes = str

View File

@@ -605,10 +605,6 @@ class module:
__file__ = ... # type: str
__dict__ = ... # type: Dict[str, Any]
True = ... # type: bool
False = ... # type: bool
__debug__ = False
NotImplemented = ... # type: Any
def abs(n: SupportsAbs[_T]) -> _T: ...