mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 12:17:14 +03:00
Merge pull request #238 from wiredfool/pycapsule
Use PyCapsule for py3.1, fixes #237
This commit is contained in:
commit
eeac3fedef
|
@ -3044,7 +3044,7 @@ _getattr_id(ImagingObject* self, void* closure)
|
|||
static PyObject*
|
||||
_getattr_ptr(ImagingObject* self, void* closure)
|
||||
{
|
||||
#if PY_VERSION_HEX >= 0x03020000
|
||||
#if (PY_VERSION_HEX >= 0x02070000 && PY_VERSION_HEX < 0x03000000) || PY_VERSION_HEX >= 0x03010000
|
||||
return PyCapsule_New(self->image, IMAGING_MAGIC, NULL);
|
||||
#else
|
||||
return PyCObject_FromVoidPtrAndDesc(self->image, IMAGING_MAGIC, NULL);
|
||||
|
|
Loading…
Reference in New Issue
Block a user