Kaydet (Commit) 2a591667 authored tarafından Guido van Rossum's avatar Guido van Rossum

Lint

üst 4f1691d0
...@@ -83,11 +83,12 @@ module_dealloc(m) ...@@ -83,11 +83,12 @@ module_dealloc(m)
free((char *)m); free((char *)m);
} }
/* ARGSUSED */
static int static int
module_print(m, fp, flags) module_print(m, fp, flags)
moduleobject *m; moduleobject *m;
FILE *fp; FILE *fp;
int flags; int flags; /* Not used but required by interface */
{ {
fprintf(fp, "<module '%s'>", getstringvalue(m->md_name)); fprintf(fp, "<module '%s'>", getstringvalue(m->md_name));
return 0; return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment