diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-09-27 16:39:28 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-09-27 16:39:28 (GMT) |
commit | 716a9ccd3db759aedf1796c929e7cb0ec822c79f (patch) | |
tree | d621b87ececaffa6b070368ffd51a58ce11fcc66 /Modules | |
parent | 4b9d473d0ac1714fb1687d85171d0b1e6b5b6ff8 (diff) | |
download | cpython-716a9ccd3db759aedf1796c929e7cb0ec822c79f.zip cpython-716a9ccd3db759aedf1796c929e7cb0ec822c79f.tar.gz cpython-716a9ccd3db759aedf1796c929e7cb0ec822c79f.tar.bz2 |
Eliminate unnecessary get_wrapped_(u)long defines in struct module.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_struct.c | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/Modules/_struct.c b/Modules/_struct.c index 7f8198b..8c1549d 100644 --- a/Modules/_struct.c +++ b/Modules/_struct.c @@ -213,9 +213,6 @@ get_ulonglong(PyObject *v, unsigned PY_LONG_LONG *p) #endif -#define get_wrapped_long get_long -#define get_wrapped_ulong get_ulong - /* Floating point helpers */ static PyObject * @@ -525,7 +522,7 @@ np_uint(char *p, PyObject *v, const formatdef *f) { unsigned long x; unsigned int y; - if (get_wrapped_ulong(v, &x) < 0) + if (get_ulong(v, &x) < 0) return -1; y = (unsigned int)x; #if (SIZEOF_LONG > SIZEOF_INT) @@ -550,7 +547,7 @@ static int np_ulong(char *p, PyObject *v, const formatdef *f) { unsigned long x; - if (get_wrapped_ulong(v, &x) < 0) + if (get_ulong(v, &x) < 0) return -1; memcpy(p, (char *)&x, sizeof x); return 0; @@ -757,7 +754,7 @@ bp_int(char *p, PyObject *v, const formatdef *f) { long x; Py_ssize_t i; - if (get_wrapped_long(v, &x) < 0) + if (get_long(v, &x) < 0) return -1; i = f->size; if (i != SIZEOF_LONG) { @@ -780,7 +777,7 @@ bp_uint(char *p, PyObject *v, const formatdef *f) { unsigned long x; Py_ssize_t i; - if (get_wrapped_ulong(v, &x) < 0) + if (get_ulong(v, &x) < 0) return -1; i = f->size; if (i != SIZEOF_LONG) { @@ -975,7 +972,7 @@ lp_int(char *p, PyObject *v, const formatdef *f) { long x; Py_ssize_t i; - if (get_wrapped_long(v, &x) < 0) + if (get_long(v, &x) < 0) return -1; i = f->size; if (i != SIZEOF_LONG) { @@ -998,7 +995,7 @@ lp_uint(char *p, PyObject *v, const formatdef *f) { unsigned long x; Py_ssize_t i; - if (get_wrapped_ulong(v, &x) < 0) + if (get_ulong(v, &x) < 0) return -1; i = f->size; if (i != SIZEOF_LONG) { |