mirror of https://github.com/python/cpython
remove unused vars
This commit is contained in:
parent
cc9bc8f824
commit
e9f29bf4ca
|
@ -342,7 +342,6 @@ dnr_AddrToStr(self, args)
|
|||
OSErr err;
|
||||
unsigned long ipaddr;
|
||||
char ipname[16];
|
||||
object *rv;
|
||||
|
||||
if (!newgetargs(args, "l", &ipaddr))
|
||||
return NULL;
|
||||
|
@ -436,7 +435,7 @@ static struct methodlist dnr_methods[] = {
|
|||
void
|
||||
initmacdnr()
|
||||
{
|
||||
object *m, *d, *o;
|
||||
object *m, *d;
|
||||
|
||||
/* Create the module and add the functions */
|
||||
m = initmodule("macdnr", dnr_methods);
|
||||
|
|
Loading…
Reference in New Issue