./
This commit is contained in:
Guido van Rossum 1992-03-27 17:26:44 +00:00
parent 2a591667bd
commit eec181ae88

View File

@ -99,11 +99,12 @@ meth_dealloc(m)
free((char *)m); free((char *)m);
} }
/* ARGSUSED */
static int static int
meth_print(m, fp, flags) meth_print(m, fp, flags)
methodobject *m; methodobject *m;
FILE *fp; FILE *fp;
int flags; int flags; /* Not used but required by interface */
{ {
if (m->m_self == NULL) if (m->m_self == NULL)
fprintf(fp, "<built-in function '%s'>", m->m_name); fprintf(fp, "<built-in function '%s'>", m->m_name);