Removed unused custom exception support for ImmutableList.

If the warning provided was an instance of Exception, then it would be
used as-is. In practice this is untested, unused and ImmutableList is
an undocumented internal datastructure.
This commit is contained in:
Nick Pope 2020-10-02 12:21:15 +01:00 committed by Mariusz Felisiak
parent c3d9b8b28f
commit 1a8ad8a5c6
1 changed files with 2 additions and 5 deletions

View File

@ -230,11 +230,8 @@ class ImmutableList(tuple):
self.warning = warning
return self
def complain(self, *wargs, **kwargs):
if isinstance(self.warning, Exception):
raise self.warning
else:
raise AttributeError(self.warning)
def complain(self, *args, **kwargs):
raise AttributeError(self.warning)
# All list mutation functions complain.
__delitem__ = complain