[issue11756] bytes.hex()

2011-04-03 Thread R. David Murray
R. David Murray added the comment: Actually, this is a duplicate of issue 9951. -- nosy: +r.david.murray resolution: invalid -> duplicate stage: -> committed/rejected superseder: -> introduce bytes.hex method ___ Python tracker

[issue11756] bytes.hex()

2011-04-03 Thread Benjamin Peterson
Benjamin Peterson added the comment: binascci.(un)hexlify -- nosy: +benjamin.peterson resolution: -> invalid status: open -> closed ___ Python tracker ___ _

[issue11756] bytes.hex()

2011-04-03 Thread David Albert Torpey
New submission from David Albert Torpey : Floats have fromhex() and hex() to round-trip from and to hexadecimal, but bytes only have fromhex(), so it's hard to reliably round-trip. -- messages: 132892 nosy: dtorp priority: normal severity: normal status: open title: bytes.hex() type: fe