[Python-Dev] pymalloc API - is 1.5.2 compatibility a possible explanation?
Skip Montanaro
skip@pobox.com
2002年3月19日 07:33:06 -0600
Michael> Better IMHO is what _sre.c does:
Michael> #if PY_VERSION_HEX < 0x01060000
Michael> #define PyObject_DEL(op) PyMem_DEL((op))
Michael> #endif
Thanks, I'll pass that along to Andy.
>> It would appear at least some of the breakage stems from actual or
>> perceived differences in the object allocation API between 1.5.2 and
>> 2.x.
Michael> I thought we'd already worked this much out...
We might have, but clearly there are a lot of extension module writers who
haven't. ;-)
Skip