mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-20 13:37:28 +02:00
test: Remove unused, undocumented and misleading CScript.__add__
This commit is contained in:
parent
9e8e813df5
commit
faff9e4bb4
3 changed files with 5 additions and 11 deletions
|
|
@ -449,15 +449,8 @@ class CScript(bytes):
|
|||
return other
|
||||
|
||||
def __add__(self, other):
|
||||
# Do the coercion outside of the try block so that errors in it are
|
||||
# noticed.
|
||||
other = self.__coerce_instance(other)
|
||||
|
||||
try:
|
||||
# bytes.__add__ always returns bytes instances unfortunately
|
||||
return CScript(super(CScript, self).__add__(other))
|
||||
except TypeError:
|
||||
raise TypeError('Can not add a %r instance to a CScript' % other.__class__)
|
||||
# add makes no sense for a CScript()
|
||||
raise NotImplementedError
|
||||
|
||||
def join(self, iterable):
|
||||
# join makes no sense for a CScript()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue