Files
cpython/Modules
Barry Warsaw e977c210cb After a brief conversation and code review with TP, adding two very
commonly used functions to convert an arbitrary binary string into
a hexadecimal digit representation and back again.  These are often
(and often differently) implemented in Python.  Best to have one
common fast implementation.  Specifically,

binascii_hexlify(): a.k.a. b2a_hex() to return the hex representation
of binary data.

binascii_unhexlify(): a.k.a. a2b_hex() to do the inverse conversion
(hex digits to binary data).  The argument must have an even length,
and must contain only hex digits, otherwise a TypeError is raised.
2000-08-15 06:07:13 +00:00
..
2000-06-30 16:09:01 +00:00
2000-07-01 00:16:13 +00:00
2000-06-30 23:58:06 +00:00
2000-07-09 20:42:34 +00:00
2000-06-30 16:04:18 +00:00
2000-07-30 02:46:26 +00:00
2000-07-24 15:49:08 +00:00
2000-08-01 22:47:49 +00:00
1996-01-26 21:10:22 +00:00
2000-07-26 03:56:06 +00:00
2000-06-30 23:58:06 +00:00