builtins: Remove Exception.message. (#363)

It's not present in 3.4 either, so this looks good to me.
This commit is contained in:
Eklavya Sharma
2016-07-13 20:41:51 +05:30
committed by Jukka Lehtosalo
parent 53d126f4d4
commit bca4c81b70

View File

@@ -751,7 +751,6 @@ Ellipsis = ... # type: ellipsis
class BaseException:
args = ... # type: Any
message = ... # type: str
def __init__(self, *args: Any) -> None: ...
def with_traceback(self, tb: Any) -> BaseException: ...