This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author wolfc01
Recipients wolfc01
Date 2017-11-21.14:13:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1511273635.4.0.213398074469.issue32103@psf.upfronthosting.co.za>
In-reply-to
Content
>>> a = b"jan"
>>> b = "jan"
>>> a+b
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: can't concat str to bytes
>>> b+a
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: must be str, not bytes
>>>

IMHO The latter TypeError text should be "TypeError: can't concat bytes to str"
History
Date User Action Args
2017-11-21 14:13:55wolfc01setrecipients: + wolfc01
2017-11-21 14:13:55wolfc01setmessageid: <1511273635.4.0.213398074469.issue32103@psf.upfronthosting.co.za>
2017-11-21 14:13:55wolfc01linkissue32103 messages
2017-11-21 14:13:55wolfc01create