[Python-checkins] r46687 - python/trunk/Modules/socketmodule.c

neal.norwitz python-checkins at python.org
Tue Jun 6 09:22:11 CEST 2006


Author: neal.norwitz
Date: Tue Jun  6 09:22:08 2006
New Revision: 46687

Modified:
   python/trunk/Modules/socketmodule.c
Log:
Remove unused variable (and stop compiler warning)

Modified: python/trunk/Modules/socketmodule.c
==============================================================================
--- python/trunk/Modules/socketmodule.c	(original)
+++ python/trunk/Modules/socketmodule.c	Tue Jun  6 09:22:08 2006
@@ -2453,7 +2453,6 @@
 	int buflen;
 
 	PyObject *addr = NULL;
-	PyObject *ret = NULL;
 
 	if (!PyArg_ParseTupleAndKeywords(args, kwds, "w#|ii:recvfrom", kwlist,
 					 &buf, &buflen, &recvlen, &flags))


More information about the Python-checkins mailing list