mirror of
https://github.com/python/cpython.git
synced 2026-01-01 13:03:56 +00:00
11 lines
305 B
C
11 lines
305 B
C
/* Module support interface */
|
|
|
|
struct methodlist {
|
|
char *ml_name;
|
|
method ml_meth;
|
|
};
|
|
|
|
extern object *findmethod PROTO((struct methodlist *, object *, char *));
|
|
extern object *initmodule PROTO((char *, struct methodlist *));
|
|
extern int err_badargs PROTO((void));
|
|
extern object *err_nomem PROTO((void));
|