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 vilya
Recipients neologix, vilya, vstinner
Date 2011-10-28.14:25:10
SpamBayes Score 0.00037133513
Marked as misclassified No
Message-id <1319811911.15.0.800009051595.issue13285@psf.upfronthosting.co.za>
In-reply-to
Content
Could it return an opaque wrapper object, rather than just the raw address? Something like:

typedef struct _PyNativeSignalHandler {
  PyObject_HEAD
  sighandler_t handler_func;
} PyNativeSignalHandler;

where the type object doesn't expose any way to read or manipulate the handler_func. Would that work, do you think?
History
Date User Action Args
2011-10-28 14:25:11vilyasetrecipients: + vilya, vstinner, neologix
2011-10-28 14:25:11vilyasetmessageid: <1319811911.15.0.800009051595.issue13285@psf.upfronthosting.co.za>
2011-10-28 14:25:10vilyalinkissue13285 messages
2011-10-28 14:25:10vilyacreate