[Python-checkins] CVS: python/dist/src/Doc/api api.tex,1.71,1.72

Fred L. Drake python-dev@python.org
Mon, 3 Jul 2000 06:38:12 -0700


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

Modified Files:
	api.tex 
Log Message:

Marc-Andre Lemburg <mal@lemburg.com>:
Update the API docs for the new macros Py_UNICODE_ISALPHA() and
Py_UNICODE_ISALNUM().


Index: api.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/api/api.tex,v
retrieving revision 1.71
retrieving revision 1.72
diff -C2 -r1.71 -r1.72
*** api.tex	2000/06/30 15:52:39	1.71
--- api.tex	2000/07/03 13:38:10	1.72
***************
*** 1994,1998 ****
  
  \begin{cfuncdesc}{int}{Py_UNICODE_ISUPPER}{Py_UNICODE ch}
! Returns 1/0 depending on whether \var{ch} is a uppercase character.
  \end{cfuncdesc}
  
--- 1994,1998 ----
  
  \begin{cfuncdesc}{int}{Py_UNICODE_ISUPPER}{Py_UNICODE ch}
! Returns 1/0 depending on whether \var{ch} is an uppercase character.
  \end{cfuncdesc}
  
***************
*** 2015,2018 ****
--- 2015,2026 ----
  \begin{cfuncdesc}{int}{Py_UNICODE_ISNUMERIC}{Py_UNICODE ch}
  Returns 1/0 depending on whether \var{ch} is a numeric character.
+ \end{cfuncdesc}
+ 
+ \begin{cfuncdesc}{int}{Py_UNICODE_ISALPHA}{Py_UNICODE ch}
+ Returns 1/0 depending on whether \var{ch} is an alphabetic character.
+ \end{cfuncdesc}
+ 
+ \begin{cfuncdesc}{int}{Py_UNICODE_ISALNUM}{Py_UNICODE ch}
+ Returns 1/0 depending on whether \var{ch} is an alphanumeric character.
  \end{cfuncdesc}