[Python-checkins] python/dist/src/Doc/lib libfuncs.tex,1.109,1.110

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Mon, 08 Jul 2002 07:29:08 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv1905

Modified Files:
	libfuncs.tex 
Log Message:
Fix typo:  "an Unicode string" --> "a Unicode string"
Clarify the return value when the parameter is a Unicode object.


Index: libfuncs.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libfuncs.tex,v
retrieving revision 1.109
retrieving revision 1.110
diff -C2 -d -r1.109 -r1.110
*** libfuncs.tex	29 Jun 2002 16:06:47 -0000	1.109
--- libfuncs.tex	8 Jul 2002 14:29:05 -0000	1.110
***************
*** 872,877 ****
    If no optional parameters are given, \code{unicode()} will mimic the
    behaviour of \code{str()} except that it returns Unicode strings
!   instead of 8-bit strings. More precisely, if \var{object} is an
!   Unicode string or subclass it will return a Unicode string without
    any additional decoding applied.
  
--- 872,877 ----
    If no optional parameters are given, \code{unicode()} will mimic the
    behaviour of \code{str()} except that it returns Unicode strings
!   instead of 8-bit strings. More precisely, if \var{object} is a
!   Unicode string or subclass it will return that Unicode string without
    any additional decoding applied.