From bca4c81b70bcda9e846a1cffcea824f4ccd46e9e Mon Sep 17 00:00:00 2001 From: Eklavya Sharma Date: Wed, 13 Jul 2016 20:41:51 +0530 Subject: [PATCH] builtins: Remove Exception.message. (#363) It's not present in 3.4 either, so this looks good to me. --- stdlib/3/builtins.pyi | 1 - 1 file changed, 1 deletion(-) diff --git a/stdlib/3/builtins.pyi b/stdlib/3/builtins.pyi index deebf1dfc..291296aed 100644 --- a/stdlib/3/builtins.pyi +++ b/stdlib/3/builtins.pyi @@ -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: ...