Mailing List Archive

CVS: python/dist/src/Doc/ext extending.tex,1.14,1.15
Update of /cvsroot/python/python/dist/src/Doc/ext
In directory usw-pr-cvs1:/tmp/cvs-serv5168/ext

Modified Files:
extending.tex
Log Message:
Mark a couple of types that had not been marked.

Index: extending.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ext/extending.tex,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** extending.tex 28 Mar 2002 22:36:56 -0000 1.14
--- extending.tex 28 Mar 2002 23:46:41 -0000 1.15
***************
*** 664,671 ****
\item[\samp{u} (Unicode object) {[Py_UNICODE *]}]
Convert a Python Unicode object to a C pointer to a null-terminated
! buffer of 16-bit Unicode (UTF-16) data. As with \samp{s}, there is no need
! to provide storage for the Unicode data buffer; a pointer to the
! existing Unicode data is stored into the Py_UNICODE pointer variable whose
! address you pass.

\item[\samp{u\#} (Unicode object) {[Py_UNICODE *, int]}]
--- 664,671 ----
\item[\samp{u} (Unicode object) {[Py_UNICODE *]}]
Convert a Python Unicode object to a C pointer to a null-terminated
! buffer of 16-bit Unicode (UTF-16) data. As with \samp{s}, there is no
! need to provide storage for the Unicode data buffer; a pointer to the
! existing Unicode data is stored into the \ctype{Py_UNICODE} pointer
! variable whose address you pass.

\item[\samp{u\#} (Unicode object) {[Py_UNICODE *, int]}]
***************
*** 673,677 ****
a pointer to a Unicode data buffer, the second one its length.
Non-Unicode objects are handled by interpreting their read buffer
! pointer as pointer to a Py_UNICODE array.

\item[\samp{es} (string, Unicode object or character buffer compatible
--- 673,677 ----
a pointer to a Unicode data buffer, the second one its length.
Non-Unicode objects are handled by interpreting their read buffer
! pointer as pointer to a \ctype{Py_UNICODE} array.

\item[\samp{es} (string, Unicode object or character buffer compatible