mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Made some more things static, and other cleanup for new naming scheme
This commit is contained in:
parent
78c0535a22
commit
cd938fc5a1
5 changed files with 10 additions and 11 deletions
|
@ -56,12 +56,12 @@ staticforward typeobject Arraytype;
|
|||
#define is_arrayobject(op) ((op)->ob_type == &Arraytype)
|
||||
|
||||
/* Forward */
|
||||
extern object *newarrayobject PROTO((int, struct arraydescr *));
|
||||
extern int getarraysize PROTO((object *));
|
||||
extern object *getarrayitem PROTO((object *, int));
|
||||
static object *newarrayobject PROTO((int, struct arraydescr *));
|
||||
static int getarraysize PROTO((object *));
|
||||
static object *getarrayitem PROTO((object *, int));
|
||||
static int setarrayitem PROTO((object *, int, object *));
|
||||
extern int insarrayitem PROTO((object *, int, object *));
|
||||
extern int addarrayitem PROTO((object *, object *));
|
||||
static int insarrayitem PROTO((object *, int, object *));
|
||||
static int addarrayitem PROTO((object *, object *));
|
||||
|
||||
static object *
|
||||
c_getitem(ap, i)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue