This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author petere
Recipients petere
Date 2011-01-29.21:34:46
SpamBayes Score 1.6307116e-08
Marked as misclassified No
Message-id <1296336887.12.0.12161660566.issue11067@psf.upfronthosting.co.za>
In-reply-to
Content
When setting Py_LIMITED_API, functions such as PyUnicode_Check() can no longer be used.  Example:

#define Py_LIMITED_API

#include <Python.h>

void foo()
{
    PyObject *o;

    PyUnicode_Check(o); 
}

test.c: In function ‘foo’:
test.c:9: error: dereferencing pointer to incomplete type

PEP 384 contains some nested language that suggests that the _Check macros should be available under the limited API.  And it seems to me that they easily could be, if Py_TYPE were implemented as a function instead of a macro.
History
Date User Action Args
2011-01-29 21:34:47peteresetrecipients: + petere
2011-01-29 21:34:47peteresetmessageid: <1296336887.12.0.12161660566.issue11067@psf.upfronthosting.co.za>
2011-01-29 21:34:46peterelinkissue11067 messages
2011-01-29 21:34:46peterecreate