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 nedds
Recipients benjamin.peterson, collinwinter, loewis, nedds, nnorwitz, theller
Date 2008-08-04.18:32:38
SpamBayes Score 0.0011350174
Marked as misclassified No
Message-id <1217874759.98.0.747017889619.issue2470@psf.upfronthosting.co.za>
In-reply-to
Content
If nobody else is interested in or currently in the process of making a
fixer for this, I can do it. I'm not sure if I completely understand the
changes I need to make though. Importing dl needs to be replaced by
importing ctypes, calls to dl.open() need to be replaced by calls to
ctypes.CDLL(), and calls to call() from an open dl object need to be
replaced to calls to funcname, where funcname is the first argument to
call(). Also, any strings in the other arguments should be preceded with
b to make them byte objects. Is this all that needs doing or am I
missing something else? Are there more complicated cases that I should
also take into account?
History
Date User Action Args
2008-08-04 18:32:40neddssetrecipients: + nedds, loewis, nnorwitz, theller, collinwinter, benjamin.peterson
2008-08-04 18:32:39neddssetmessageid: <1217874759.98.0.747017889619.issue2470@psf.upfronthosting.co.za>
2008-08-04 18:32:39neddslinkissue2470 messages
2008-08-04 18:32:38neddscreate