[Python-checkins] r53787 - python/trunk/Doc/lib/libstruct.tex

georg.brandl python-checkins at python.org
Thu Feb 15 12:29:55 CET 2007


Author: georg.brandl
Date: Thu Feb 15 12:29:55 2007
New Revision: 53787

Modified:
   python/trunk/Doc/lib/libstruct.tex
Log:
Add missing \versionadded.


Modified: python/trunk/Doc/lib/libstruct.tex
==============================================================================
--- python/trunk/Doc/lib/libstruct.tex	(original)
+++ python/trunk/Doc/lib/libstruct.tex	Thu Feb 15 12:29:55 2007
@@ -34,6 +34,8 @@
   format, write the packed bytes into the writable \var{buffer} starting at
   \var{offset}.
   Note that the offset is not an optional argument.
+
+  \versionadded{2.5}
 \end{funcdesc}
 
 \begin{funcdesc}{unpack}{fmt, string}
@@ -50,6 +52,8 @@
   \var{buffer} must contain at least the amount of data required by the
   format (\code{len(buffer[offset:])} must be at least
   \code{calcsize(\var{fmt})}).
+
+  \versionadded{2.5}
 \end{funcdesc}
 
 \begin{funcdesc}{calcsize}{fmt}


More information about the Python-checkins mailing list