mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Initial revision
This commit is contained in:
parent
c636014c43
commit
85a5fbbdfe
78 changed files with 13589 additions and 0 deletions
11
Include/modsupport.h
Normal file
11
Include/modsupport.h
Normal file
|
@ -0,0 +1,11 @@
|
|||
/* 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));
|
Loading…
Add table
Add a link
Reference in a new issue