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 py.user
Recipients py.user
Date 2011-06-21.03:50:09
SpamBayes Score 5.3474184e-07
Marked as misclassified No
Message-id <[email protected]>
In-reply-to
Content
>>> bytearray(b'abc').rjust(10, b'*')
bytearray(b'*******abc')
>>> bytearray(b'abc').rjust(10, bytearray(b'*'))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: must be a byte string of length 1, not bytearray
>>>
History
Date User Action Args
2011-06-21 03:50:10py.usersetrecipients: + py.user
2011-06-21 03:50:10py.usersetmessageid: <[email protected]>
2011-06-21 03:50:10py.userlinkissue12380 messages
2011-06-21 03:50:09py.usercreate