We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In CPython:
>>> "abc" + bytearray("abc") bytearray(b'abcabc')
In Pyston:
>> "abc" + bytearray("abc") Traceback (most recent call last): File "<stdin>", line 1, in <module>: TypeError: cannot concatenate 'str' and 'bytearray' objects
The text was updated successfully, but these errors were encountered:
Allow string + bytearray => bytearray. Fixes pyston#780
2dfe23b
d6cda7e
ce86094
Merge pull request #832 from vinzenz/bytearray-string-concat
27df1a7
Allow string + bytearray => bytearray. Fixes #780
No branches or pull requests
In CPython:
In Pyston:
The text was updated successfully, but these errors were encountered: