[Python-checkins] CVS: python/dist/src/Objects descrobject.c,2.16,2.17

Neil Schemenauer nascheme@users.sourceforge.net
Sun, 21 Oct 2001 15:26:45 -0700


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

Modified Files:
	descrobject.c 
Log Message:
Adding missing "static" declarations (found by "make smelly").


Index: descrobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/descrobject.c,v
retrieving revision 2.16
retrieving revision 2.17
diff -C2 -d -r2.16 -r2.17
*** descrobject.c	2001/10/03 12:09:30	2.16
--- descrobject.c	2001/10/21 22:26:43	2.17
***************
*** 674,678 ****
  }
  
! PyObject *
  proxy_str(proxyobject *pp)
  {
--- 674,678 ----
  }
  
! static PyObject *
  proxy_str(proxyobject *pp)
  {
***************
*** 694,698 ****
  }
  
! PyTypeObject proxytype = {
  	PyObject_HEAD_INIT(&PyType_Type)
  	0,					/* ob_size */
--- 694,698 ----
  }
  
! static PyTypeObject proxytype = {
  	PyObject_HEAD_INIT(&PyType_Type)
  	0,					/* ob_size */
***************
*** 828,832 ****
  }
  
! PyTypeObject wrappertype = {
  	PyObject_HEAD_INIT(&PyType_Type)
  	0,					/* ob_size */
--- 828,832 ----
  }
  
! static PyTypeObject wrappertype = {
  	PyObject_HEAD_INIT(&PyType_Type)
  	0,					/* ob_size */