diff options
author | Christian Heimes <christian@cheimes.de> | 2008-01-11 15:42:29 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-01-11 15:42:29 (GMT) |
commit | 0f973934f4b294d3245a63b3eff0b80d69930c88 (patch) | |
tree | 45de68d7922f235c064dacb18ab77dc28914d44f /Modules | |
parent | eb65c99d00a1cd7f1f2044af4c54b7a14397c4fd (diff) | |
download | cpython-0f973934f4b294d3245a63b3eff0b80d69930c88.zip cpython-0f973934f4b294d3245a63b3eff0b80d69930c88.tar.gz cpython-0f973934f4b294d3245a63b3eff0b80d69930c88.tar.bz2 |
Removed unused variable
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/socketmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index c060dcd..e1f1a4e 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; |