Serhiy Storchaka added the comment:

Yes, this a side effect of using more human-friendly enums. This is not a 
problem if string representation is used in formatting human-readable messages, 
but if you need numerical representation, you could use str(int(code)), '%d' % 
code or '{:d}'.format(code).

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26123>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to