Merge pull request #85 from ddfisher/master

Remove invalid Python 3 syntax
This commit is contained in:
Matthias Kramm
2016-02-23 20:14:15 -06:00
2 changed files with 3 additions and 8 deletions

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: ...