]> granicus.if.org Git - python/commitdiff
remove decl of unused variable
authorJeremy Hylton <jeremy@alum.mit.edu>
Thu, 11 Jul 2002 22:02:33 +0000 (22:02 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Thu, 11 Jul 2002 22:02:33 +0000 (22:02 +0000)
Modules/cPickle.c

index 84c1d4f18e0f8ed4ced27c08dccd4a3a919cc39d..91a63bf6eb715eef59f0261634aa93e799c1522c 100644 (file)
@@ -1686,7 +1686,7 @@ save_inst(Picklerobject *self, PyObject *args)
 static int
 save_global(Picklerobject *self, PyObject *args, PyObject *name) 
 {
-       PyObject *global_name = 0, *module = 0, *mod = 0, *moddict = 0, *klass = 0;
+       PyObject *global_name = 0, *module = 0, *mod = 0, *klass = 0;
        char *name_str, *module_str;
        int module_size, name_size, res = -1;