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 serhiy.storchaka
Recipients berker.peksag, ethan.furman, serhiy.storchaka, vstinner
Date 2016-04-15.11:35:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1460720117.44.0.80272395236.issue26766@psf.upfronthosting.co.za>
In-reply-to
Content
Python 3.5:

>>> bytearray(b'%d') % 42
bytearray(b'42')

Python 3.6:

>>> bytearray(b'%d') % 42
b'42'
History
Date User Action Args
2016-04-15 11:35:17serhiy.storchakasetrecipients: + serhiy.storchaka, vstinner, ethan.furman, berker.peksag
2016-04-15 11:35:17serhiy.storchakasetmessageid: <1460720117.44.0.80272395236.issue26766@psf.upfronthosting.co.za>
2016-04-15 11:35:17serhiy.storchakalinkissue26766 messages
2016-04-15 11:35:17serhiy.storchakacreate