[Python-checkins] python/dist/src/Modules socketmodule.c,1.214,1.215

nascheme@sourceforge.net nascheme@sourceforge.net
Thu, 11 Apr 2002 19:41:27 -0700


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

Modified Files:
	socketmodule.c 
Log Message:
PyObject_Del can now be used as a function designator.


Index: socketmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/socketmodule.c,v
retrieving revision 1.214
retrieving revision 1.215
diff -C2 -d -r1.214 -r1.215
*** socketmodule.c	11 Apr 2002 20:44:16 -0000	1.214
--- socketmodule.c	12 Apr 2002 02:41:24 -0000	1.215
***************
*** 2704,2708 ****
  	PySocketSock_Type.tp_getattro = PyObject_GenericGetAttr;
  	PySocketSock_Type.tp_alloc = PyType_GenericAlloc;
! 	PySocketSock_Type.tp_free = _PyObject_Del;
  	m = Py_InitModule3(PySocket_MODULE_NAME, 
  			   PySocket_methods, 
--- 2704,2708 ----
  	PySocketSock_Type.tp_getattro = PyObject_GenericGetAttr;
  	PySocketSock_Type.tp_alloc = PyType_GenericAlloc;
! 	PySocketSock_Type.tp_free = PyObject_Del;
  	m = Py_InitModule3(PySocket_MODULE_NAME, 
  			   PySocket_methods,