Allow for ssize_t field offsets.

This commit is contained in:
Martin v. Löwis 2006-02-16 14:23:19 +00:00
parent 3eaf2b5044
commit 44e379d573
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ typedef struct PyMemberDef {
/* Current version, use this */
char *name;
int type;
int offset;
Py_ssize_t offset;
int flags;
char *doc;
} PyMemberDef;