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 dalcinl
Recipients dalcinl
Date 2010-09-28.15:22:17
SpamBayes Score 1.759204e-07
Marked as misclassified No
Message-id <1285687340.14.0.296693885275.issue9972@psf.upfronthosting.co.za>
In-reply-to
Content
I've built Python-2.6.5 form with this :

$ ./configure --without-threads --prefix=$HOME/python-without-threads
$ make && make install

$ cd ~/python-without-threads/lib
$ nm libpython2.6.so | grep PyGILState
$ 

At Include/pystate.h,  PyGILState_{Ensure|Release} are not protected with #ifdef WITH_THREADS

At Python/pystate.c PyGILState_{Ensure|Release} are implemented in a block protected with #ifdef WITH_THREADS

AFAIK, this happens in all Python versions back to 2.3 and up to 3.2
History
Date User Action Args
2010-09-28 15:22:20dalcinlsetrecipients: + dalcinl
2010-09-28 15:22:20dalcinlsetmessageid: <1285687340.14.0.296693885275.issue9972@psf.upfronthosting.co.za>
2010-09-28 15:22:18dalcinllinkissue9972 messages
2010-09-28 15:22:17dalcinlcreate