[Python-checkins] CVS: python/dist/src/Doc/lib libmarshal.tex,1.17,1.18

Fred Drake python-dev@python.org
Thu, 6 Apr 2000 10:47:22 -0400


Update of /projects/cvsroot/python/dist/src/Doc/lib
In directory seahag.cnri.reston.va.us:/home/fdrake/projects/python/Doc/lib

Modified Files:
	libmarshal.tex 
Log Message:

Marc-Andre Lemburg <mal@lemburg.com>:
Add Unicode strings to the list of marshalable types.


Index: libmarshal.tex
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Doc/lib/libmarshal.tex,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -r1.17 -r1.18
*** libmarshal.tex	2000/04/03 20:13:53	1.17
--- libmarshal.tex	2000/04/06 14:47:20	1.18
***************
*** 33,41 ****
  be written and read by this module.  The following types are supported:
  \code{None}, integers, long integers, floating point numbers,
! strings, tuples, lists, dictionaries, and code objects, where it
! should be understood that tuples, lists and dictionaries are only
! supported as long as the values contained therein are themselves
! supported; and recursive lists and dictionaries should not be written
! (they will cause infinite loops).
  
  \strong{Caveat:} On machines where C's \code{long int} type has more than
--- 33,41 ----
  be written and read by this module.  The following types are supported:
  \code{None}, integers, long integers, floating point numbers,
! strings, Unicode objects, tuples, lists, dictionaries, and code
! objects, where it should be understood that tuples, lists and
! dictionaries are only supported as long as the values contained
! therein are themselves supported; and recursive lists and dictionaries
! should not be written (they will cause infinite loops).
  
  \strong{Caveat:} On machines where C's \code{long int} type has more than