[issue26766] Redundant check in bytearray_mod

Serhiy Storchaka report at bugs.python.org
Fri Apr 15 07:35:17 EDT 2016


Serhiy Storchaka added the comment:

Python 3.5:

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

Python 3.6:

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

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue26766>
_______________________________________


More information about the Python-bugs-list mailing list