[Python-checkins] python/dist/src/Doc/ext newtypes.tex,1.26,1.27

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Fri, 16 May 2003 07:36:29 -0700


Update of /cvsroot/python/python/dist/src/Doc/ext
In directory sc8-pr-cvs1:/tmp/cvs-serv21149

Modified Files:
	newtypes.tex 
Log Message:
Missing parenthesis.

Index: newtypes.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ext/newtypes.tex,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** newtypes.tex	16 May 2003 13:51:58 -0000	1.26
--- newtypes.tex	16 May 2003 14:36:26 -0000	1.27
***************
*** 1360,1364 ****
  
  \begin{verbatim}
!     if (! PyObject_TypeCheck(some_object, &MyType) {
          PyErr_SetString(PyExc_TypeError, "arg #1 not a mything");
          return NULL;
--- 1360,1364 ----
  
  \begin{verbatim}
!     if (! PyObject_TypeCheck(some_object, &MyType)) {
          PyErr_SetString(PyExc_TypeError, "arg #1 not a mything");
          return NULL;