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 berker.peksag
Recipients berker.peksag, ethan.furman, serhiy.storchaka, vstinner
Date 2016-04-15.12:12:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1460722340.79.0.12958250349.issue26766@psf.upfronthosting.co.za>
In-reply-to
Content
Thanks! More examples:

Python 3.6:

>>> bytearray(b'hello %b') % b"world"
bytearray(b'hello world')
>>> bytearray(b'hello %b') % b"wor"
b'hello wor'

Python 3.5:

>>> bytearray(b'hello %b') % b"world"
bytearray(b'hello world')
>>> bytearray(b'hello %b') % b"wor"
bytearray(b'hello wor')
History
Date User Action Args
2016-04-15 12:12:20berker.peksagsetrecipients: + berker.peksag, vstinner, ethan.furman, serhiy.storchaka
2016-04-15 12:12:20berker.peksagsetmessageid: <1460722340.79.0.12958250349.issue26766@psf.upfronthosting.co.za>
2016-04-15 12:12:20berker.peksaglinkissue26766 messages
2016-04-15 12:12:20berker.peksagcreate