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 nikratio
Recipients ncoghlan, nikratio, verigak
Date 2010-02-16.15:02:42
SpamBayes Score 4.8297963e-05
Marked as misclassified No
Message-id <1266332564.75.0.890140233495.issue6627@psf.upfronthosting.co.za>
In-reply-to
Content
Here is a simple testcase:

$ gcc -fPIC -g -c -Wall lib.c
$ gcc -shared -Wl -o lib.so lib.o
$ python test.py
In callback: creating thread
Python callback_fn called, setting lc.x = 42
Python callback_fn called, setting lc.x = 42


Expected output:

$ python test.py
In callback: creating thread
Python callback_fn called, setting lc.x = 42
Python callback_fn called, lc.x = 42
History
Date User Action Args
2010-02-16 15:02:45nikratiosetrecipients: + nikratio, ncoghlan, verigak
2010-02-16 15:02:44nikratiosetmessageid: <1266332564.75.0.890140233495.issue6627@psf.upfronthosting.co.za>
2010-02-16 15:02:42nikratiolinkissue6627 messages
2010-02-16 15:02:42nikratiocreate