[Python-3000-checkins] r55761 - python/branches/py3k-struni/Modules/socketmodule.c

walter.doerwald python-3000-checkins at python.org
Tue Jun 5 15:48:14 CEST 2007


Author: walter.doerwald
Date: Tue Jun  5 15:48:11 2007
New Revision: 55761

Modified:
   python/branches/py3k-struni/Modules/socketmodule.c
Log:
Remove unused variable.


Modified: python/branches/py3k-struni/Modules/socketmodule.c
==============================================================================
--- python/branches/py3k-struni/Modules/socketmodule.c	(original)
+++ python/branches/py3k-struni/Modules/socketmodule.c	Tue Jun  5 15:48:11 2007
@@ -2775,7 +2775,6 @@
 static PyObject *
 sock_repr(PySocketSockObject *s)
 {
-	char buf[512];
 #if SIZEOF_SOCKET_T > SIZEOF_LONG
 	if (s->sock_fd > LONG_MAX) {
 		/* this can occur on Win64, and actually there is a special


More information about the Python-3000-checkins mailing list