[Python-checkins] CVS: python/dist/src/Objects typeobject.c,2.78,2.79

Guido van Rossum gvanrossum@users.sourceforge.net
Mon, 01 Oct 2001 06:17:26 -0700


Update of /cvsroot/python/python/dist/src/Objects
In directory usw-pr-cvs1:/tmp/cvs-serv7951

Modified Files:
	typeobject.c 
Log Message:
Fix typo found by doerwalter.


Index: typeobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/typeobject.c,v
retrieving revision 2.78
retrieving revision 2.79
diff -C2 -d -r2.78 -r2.79
*** typeobject.c	2001/09/30 05:58:42	2.78
--- typeobject.c	2001/10/01 13:17:24	2.79
***************
*** 2446,2450 ****
  	{"__init__", (wrapperfunc)wrap_init,
  	 "x.__init__(...) initializes x; "
! 	 "see x.__type__.__doc__ for signature"},
  	{0}
  };
--- 2446,2450 ----
  	{"__init__", (wrapperfunc)wrap_init,
  	 "x.__init__(...) initializes x; "
! 	 "see x.__class__.__doc__ for signature"},
  	{0}
  };