[Python-checkins] r53988 - peps/trunk/pep-0358.txt
georg.brandl
python-checkins at python.org
Tue Feb 27 09:39:10 CET 2007
Author: georg.brandl
Date: Tue Feb 27 09:39:07 2007
New Revision: 53988
Modified:
peps/trunk/pep-0358.txt
Log:
Correctly specify the set of hexadecimal characters.
Modified: peps/trunk/pep-0358.txt
==============================================================================
--- peps/trunk/pep-0358.txt (original)
+++ peps/trunk/pep-0358.txt Tue Feb 27 09:39:07 2007
@@ -91,7 +91,7 @@
The object has a .decode() method equivalent to the .decode()
method of the str object. The object has a classmethod .fromhex()
- that takes a string of characters from the set [0-9a-zA-Z ] and
+ that takes a string of characters from the set [0-9a-fA-F ] and
returns a bytes object (similar to binascii.unhexlify). For
example:
More information about the Python-checkins
mailing list