[Python-checkins] r50985 - python/trunk/Doc/whatsnew/whatsnew25.tex

george.yoshida python-checkins at python.org
Sun Jul 30 18:37:37 CEST 2006


Author: george.yoshida
Date: Sun Jul 30 18:37:37 2006
New Revision: 50985

Modified:
   python/trunk/Doc/whatsnew/whatsnew25.tex
Log:
Rename struct.pack_to to struct.pack_into as changed in revision 46642.


Modified: python/trunk/Doc/whatsnew/whatsnew25.tex
==============================================================================
--- python/trunk/Doc/whatsnew/whatsnew25.tex	(original)
+++ python/trunk/Doc/whatsnew/whatsnew25.tex	Sun Jul 30 18:37:37 2006
@@ -1653,7 +1653,7 @@
 \end{verbatim}
 
 You can also pack and unpack data to and from buffer objects directly
-using the \method{pack_to(\var{buffer}, \var{offset}, \var{v1},
+using the \method{pack_into(\var{buffer}, \var{offset}, \var{v1},
 \var{v2}, ...)} and \method{unpack_from(\var{buffer}, \var{offset})}
 methods.  This lets you store data directly into an array or a
 memory-mapped file.


More information about the Python-checkins mailing list