diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2004-07-08 01:49:00 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2004-07-08 01:49:00 (GMT) |
commit | 93468eac728bee757446770f2b26de9cf7edcab6 (patch) | |
tree | 4f9d308a7e21117a7b0288bda54ebbaf906e0cdd /Objects/funcobject.c | |
parent | bdcb9410c20c49928c91b065ccbd115aa450e037 (diff) | |
download | cpython-93468eac728bee757446770f2b26de9cf7edcab6.zip cpython-93468eac728bee757446770f2b26de9cf7edcab6.tar.gz cpython-93468eac728bee757446770f2b26de9cf7edcab6.tar.bz2 |
Remove unused macros in .c files
Diffstat (limited to 'Objects/funcobject.c')
-rw-r--r-- | Objects/funcobject.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Objects/funcobject.c b/Objects/funcobject.c index 76acf98..971eb1c 100644 --- a/Objects/funcobject.c +++ b/Objects/funcobject.c @@ -156,8 +156,6 @@ PyFunction_SetClosure(PyObject *op, PyObject *closure) #define OFF(x) offsetof(PyFunctionObject, x) -#define RR () - static PyMemberDef func_memberlist[] = { {"func_closure", T_OBJECT, OFF(func_closure), RESTRICTED|READONLY}, |