diff options
author | Guido van Rossum <guido@python.org> | 2001-10-12 14:13:21 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-10-12 14:13:21 (GMT) |
commit | 5af588b7f0509b79645bc8652c4af038a4bd82ce (patch) | |
tree | eca2283c79e0ccbb3fb0148c47127f7e59ceed41 /Objects | |
parent | a0fb177be8d04a6c393cdf4078ce58bfa76bc26d (diff) | |
download | cpython-5af588b7f0509b79645bc8652c4af038a4bd82ce.zip cpython-5af588b7f0509b79645bc8652c4af038a4bd82ce.tar.gz cpython-5af588b7f0509b79645bc8652c4af038a4bd82ce.tar.bz2 |
Now that COPYBUF is a new local macro, add #undef COPYBUF.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/typeobject.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index a498f0f..5c1a8e6 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -1646,6 +1646,7 @@ inherit_slots(PyTypeObject *type, PyTypeObject *base) #undef COPYNUM #undef COPYSEQ #undef COPYMAP +#undef COPYBUF #define SLOTDEFINED(SLOT) \ (base->SLOT != 0 && \ |