[Python-checkins] CVS: python/dist/src/Demo/embed demo.c,1.5,1.6

Guido van Rossum python-dev@python.org
Wed, 10 Jan 2001 09:09:04 -0800


Update of /cvsroot/python/python/dist/src/Demo/embed
In directory usw-pr-cvs1:/tmp/cvs-serv2239

Modified Files:
	demo.c 
Log Message:
Fix weird typo caused by ANSIfication (nobody bothered to test it
since! :-( ).


Index: demo.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Demo/embed/demo.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** demo.c	2000/07/22 19:25:50	1.5
--- demo.c	2001/01/10 17:09:00	1.6
***************
*** 47,51 ****
  /* 'self' is not used */
  static PyObject *
! xyzzy_foo(PyObject *self, PyObjecT *args)
  {
  	if (!PyArg_ParseTuple(args, ""))
--- 47,51 ----
  /* 'self' is not used */
  static PyObject *
! xyzzy_foo(PyObject *self, PyObject* args)
  {
  	if (!PyArg_ParseTuple(args, ""))