From: Christian Heimes Date: Fri, 11 Jan 2008 15:42:29 +0000 (+0000) Subject: Removed unused variable X-Git-Tag: v2.6a1~639 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0f973934f4b294d3245a63b3eff0b80d69930c88;p=python Removed unused variable --- diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index c060dcde78..e1f1a4e1fe 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -4334,7 +4334,7 @@ See the socket module for documentation."); PyMODINIT_FUNC init_socket(void) { - PyObject *m, *has_ipv6, *tmp; + PyObject *m, *has_ipv6; if (!os_init()) return;