mirror of
https://github.com/python/cpython.git
synced 2025-09-27 18:59:43 +00:00
Lint
This commit is contained in:
parent
4f1691d0d5
commit
2a591667bd
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue