SIGN IN SIGN UP

Made the TypeError message in bytes_iconcat() less confusing.

Before this change, the following example would output:

  >>> b = bytearray(b"hello")
  >>> b += "world"
  Traceback (most recent call last):
    File "<stdin>", line 1, in <module>
  TypeError: can't concat bytes to bytearray
A
Alexandre Vassalotti committed
14a767d4f499c8ead06a14d9c64c01c4ced95e61
Parent: b2289ec