[Python-checkins] python/dist/src/Doc/lib libmarshal.tex, 1.24, 1.24.4.1

arigo at users.sourceforge.net arigo at users.sourceforge.net
Mon Dec 20 13:26:45 CET 2004


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv689/Doc/lib

Modified Files:
      Tag: release24-maint
	libmarshal.tex 
Log Message:
Back-ported: marshal.dumps() with the new optional argument 'version' just
immediately segfaults, due to a typo!


Index: libmarshal.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libmarshal.tex,v
retrieving revision 1.24
retrieving revision 1.24.4.1
diff -u -d -r1.24 -r1.24.4.1
--- libmarshal.tex	27 Jun 2004 16:51:45 -0000	1.24
+++ libmarshal.tex	20 Dec 2004 12:26:43 -0000	1.24.4.1
@@ -62,7 +62,7 @@
 
 The module defines these functions:
 
-\begin{funcdesc}{dump}{value, file}
+\begin{funcdesc}{dump}{value, file\optional{, version}}
   Write the value on the open file.  The value must be a supported
   type.  The file must be an open file object such as
   \code{sys.stdout} or returned by \function{open()} or
@@ -75,7 +75,7 @@
   read back by \function{load()}.
 
   \versionadded[The \var{version} argument indicates the data
-  format that \code{dumps} should use.]{2.4}
+  format that \code{dump} should use (see below)]{2.4}
 \end{funcdesc}
 
 \begin{funcdesc}{load}{file}
@@ -96,7 +96,7 @@
   contains an object that has) an unsupported type.
 
   \versionadded[The \var{version} argument indicates the data
-  format that \code{dumps} should use.]{2.4}
+  format that \code{dumps} should use (see below)]{2.4}
 \end{funcdesc}
 
 \begin{funcdesc}{loads}{string}



More information about the Python-checkins mailing list