[Python-checkins] CVS: python/dist/src/Doc/ext ext.tex,1.88,1.89

Fred L. Drake python-dev@python.org
Fri, 17 Nov 2000 10:20:56 -0800


Update of /cvsroot/python/python/dist/src/Doc/ext
In directory slayer.i.sourceforge.net:/tmp/cvs-serv23994/ext

Modified Files:
	ext.tex 
Log Message:

Corrected a number of typos reported by Gilles Civario
<gcivario@users.sourceforge.net>.

This closes bug #122562.


Index: ext.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ext/ext.tex,v
retrieving revision 1.88
retrieving revision 1.89
diff -C2 -r1.88 -r1.89
*** ext.tex	2000/11/02 21:49:17	1.88
--- ext.tex	2000/11/17 18:20:33	1.89
***************
*** 736,740 ****
  This variant on \samp{s\#} is used for encoding Unicode and objects
  convertible to Unicode into a character buffer. It reads one C
! variable and stores into two C variables, the first one a pointer to
  an encoding name string (\var{encoding}), the second a pointer to a
  pointer to a character buffer (\var{**buffer}, the buffer used for
--- 736,740 ----
  This variant on \samp{s\#} is used for encoding Unicode and objects
  convertible to Unicode into a character buffer. It reads one C
! variable and stores into three C variables, the first one a pointer to
  an encoding name string (\var{encoding}), the second a pointer to a
  pointer to a character buffer (\var{**buffer}, the buffer used for
***************
*** 887,892 ****
  
  \item[\samp{;}]
! The list of format units ends here; the string after the colon is used
! as the error message \emph{instead} of the default error message.
  Clearly, \samp{:} and \samp{;} mutually exclude each other.
  
--- 887,892 ----
  
  \item[\samp{;}]
! The list of format units ends here; the string after the semicolon is
! used as the error message \emph{instead} of the default error message.
  Clearly, \samp{:} and \samp{;} mutually exclude each other.
  
***************
*** 1101,1113 ****
  Unicode object.   If the Unicode buffer pointer is \NULL, the length
  is ignored and \code{None} is returned.
- 
- \item[\samp{u} (Unicode string) {[Py_UNICODE *]}]
- Convert a null-terminated buffer of Unicode (UCS-2) data to a Python Unicode 
- object. If the Unicode buffer pointer is \NULL{}, \code{None} is returned.
- 
- \item[\samp{u\#} (Unicode string) {[Py_UNICODE *, int]}]
- Convert a Unicode (UCS-2) data buffer and its length to a Python Unicode 
- object. If the Unicode buffer pointer is \NULL{}, the length is ignored and 
- \code{None} is returned.
  
  \item[\samp{i} (integer) {[int]}]
--- 1101,1104 ----