mirror of
https://github.com/python/cpython.git
synced 2024-11-28 08:20:55 +01:00
12 lines
305 B
C
12 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));
|