py.user <bugzilla-mail-...@yandex.ru> added the comment:

the same problem in the %o analog

valid strings for the %x specifier of scanf():
"+0xabc"
"-0xabc"
"+abc"
"-abc"

valid strings for the %o specifier of scanf():
"+0123"
"-0123"
"+123"
"-123"

how to patch
the %x specifier:
0[xX][\dA-Fa-f]+   ->   [-+]?(0[xX])?[\dA-Fa-f]+
the %o specifier:
0[0-7]*            ->   [-+]?[0-7]+

----------

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

Reply via email to