[issue28992] Use bytes.fromhex()

2016-12-21 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue28992] Use bytes.fromhex()

2016-12-21 Thread STINNER Victor
STINNER Victor added the comment: Serhiy: "Oh how could I make such error?! Thanks Victor. It's simple: shit happens :-) Don't worry. -- ___ Python tracker

[issue28992] Use bytes.fromhex()

2016-12-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Oh how could I make such error?! Thanks Victor. -- ___ Python tracker ___

[issue28992] Use bytes.fromhex()

2016-12-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6ced540a92bc by Serhiy Storchaka in branch 'default': Fixed a type error introduced in issue #28992. https://hg.python.org/cpython/rev/6ced540a92bc -- ___ Python tracker

[issue28992] Use bytes.fromhex()

2016-12-21 Thread STINNER Victor
STINNER Victor added the comment: Unhappy buildbot: buildbot.python.org/all/builders/AMD64 Debian root 3.x/builds/103/steps/test/logs/stdio Example: == ERROR: test_complex_address_list

[issue28992] Use bytes.fromhex()

2016-12-21 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue28992] Use bytes.fromhex()

2016-12-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 44c62456de75 by Serhiy Storchaka in branch 'default': Issue #28992: Use bytes.fromhex(). https://hg.python.org/cpython/rev/44c62456de75 -- nosy: +python-dev ___ Python tracker

[issue28992] Use bytes.fromhex()

2016-12-16 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch makes the code and tests using bytes.fromhex(). The benefit of bytes.fromhex() over manual converting hexadecimals to bytes: 1. This is the one obvious way to do it. 2. This is the fastest way to do it. -- components: Library (Lib)