mirror of https://github.com/python/cpython
COM method code is windows specific
This commit is contained in:
parent
6b094a4258
commit
d9ccf8c547
|
@ -3941,7 +3941,10 @@ static int
|
||||||
CFuncPtr_nonzero(CFuncPtrObject *self)
|
CFuncPtr_nonzero(CFuncPtrObject *self)
|
||||||
{
|
{
|
||||||
return ((*(void **)self->b_ptr != NULL)
|
return ((*(void **)self->b_ptr != NULL)
|
||||||
|| (self->index != 0));
|
#ifdef MS_WIN32
|
||||||
|
|| (self->index != 0)
|
||||||
|
#endif
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
static PyNumberMethods CFuncPtr_as_number = {
|
static PyNumberMethods CFuncPtr_as_number = {
|
||||||
|
|
Loading…
Reference in New Issue