[Python-checkins] r50874 - python/trunk/Doc/lib/libbinascii.tex

andrew.kuchling python-checkins at python.org
Thu Jul 27 21:11:07 CEST 2006


Author: andrew.kuchling
Date: Thu Jul 27 21:11:07 2006
New Revision: 50874

Modified:
   python/trunk/Doc/lib/libbinascii.tex
Log:
Mention base64 module; rewrite last sentence to be more positive

Modified: python/trunk/Doc/lib/libbinascii.tex
==============================================================================
--- python/trunk/Doc/lib/libbinascii.tex	(original)
+++ python/trunk/Doc/lib/libbinascii.tex	Thu Jul 27 21:11:07 2006
@@ -9,10 +9,11 @@
 The \module{binascii} module contains a number of methods to convert
 between binary and various \ASCII-encoded binary
 representations. Normally, you will not use these functions directly
-but use wrapper modules like \refmodule{uu}\refstmodindex{uu} or
-\refmodule{binhex}\refstmodindex{binhex} instead, this module solely
-exists because bit-manipulation of large amounts of data is slow in
-Python.
+but use wrapper modules like \refmodule{uu}\refstmodindex{uu},
+\refmodule{base64}\refstmodindex{base64}, or
+\refmodule{binhex}\refstmodindex{binhex} instead. The \module{binascii} module
+contains low-level functions written in C for greater speed
+that are used by the higher-level modules.
 
 The \module{binascii} module defines the following functions:
 


More information about the Python-checkins mailing list