[issue2470] Need fixer for dl (removed) -> ctypes module

2021-10-20 Thread Irit Katriel
Change by Irit Katriel : -- resolution: duplicate -> wont fix ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2470] Need fixer for dl (removed) -> ctypes module

2021-10-20 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> duplicate stage: needs patch -> resolved status: open -> closed superseder: -> Close 2to3 issues and list them here ___ Python tracker

[issue2470] Need fixer for dl (removed) - ctypes module

2012-04-19 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: Being open for four years, this is hardly critical. -- priority: critical - normal ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2470

[issue2470] Need fixer for dl (removed) - ctypes module

2011-10-24 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: for the RTLD_ constants, refer to issue #13226. -- nosy: +flox ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2470 ___

[issue2470] Need fixer for dl (removed) - ctypes module

2010-05-29 Thread Meador Inge
Changes by Meador Inge mead...@gmail.com: -- stage: - needs patch type: - feature request ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2470 ___

[issue2470] Need fixer for dl (removed) - ctypes module

2008-08-07 Thread Thomas Heller
Thomas Heller [EMAIL PROTECTED] added the comment: I can review and try out the fixer if someone provides a patch. OTOH I have never used the dl module. Note that dl exposed a lot of RTLD_ constants that ctypes does not yet, so there should be a patch for ctypes also.

[issue2470] Need fixer for dl (removed) - ctypes module

2008-08-04 Thread Nick Edds
Nick Edds [EMAIL PROTECTED] added the comment: 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()

[issue2470] Need fixer for dl (removed) - ctypes module

2008-08-04 Thread Collin Winter
Collin Winter [EMAIL PROTECTED] added the comment: I'd prefer it if someone better-versed in ctypes/dl wrote this fixer (or at the very least, someone with access to Windows to test the translation). ___ Python tracker [EMAIL PROTECTED]

[issue2470] Need fixer for dl (removed) - ctypes module

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson [EMAIL PROTECTED] added the comment: What's the status of this? -- nosy: +benjamin.peterson ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue2470 ___

[issue2470] Need fixer for dl (removed) - ctypes module

2008-03-25 Thread Thomas Heller
Thomas Heller [EMAIL PROTECTED] added the comment: In the simplest case, convert import dl libc = dl.open(libc.so.6) iconv = libc.call(iconv_open, ISO-8859-1, ISO-8859-2) print(iconv) to import ctypes libc = ctypes.CDLL(libc.so.6) iconv = libc.iconv_open(ISO-8859-1, ISO-8859-2)

[issue2470] Need fixer for dl (removed) - ctypes module

2008-03-25 Thread Thomas Heller
Thomas Heller [EMAIL PROTECTED] added the comment: Thomas Heller schrieb: Thomas Heller [EMAIL PROTECTED] added the comment: In the simplest case, convert import dl libc = dl.open(libc.so.6) iconv = libc.call(iconv_open, ISO-8859-1, ISO-8859-2) print(iconv) to import ctypes libc

[issue2470] Need fixer for dl (removed) - ctypes module

2008-03-24 Thread Neal Norwitz
New submission from Neal Norwitz [EMAIL PROTECTED]: r61837 removed the dl module. It needs a 2to3 fixer written to use ctypes. -- assignee: collinwinter components: 2to3 (2.x to 3.0 conversion tool) messages: 64394 nosy: collinwinter, nnorwitz priority: critical severity: normal

[issue2470] Need fixer for dl (removed) - ctypes module

2008-03-24 Thread Martin v. Löwis
Martin v. Löwis [EMAIL PROTECTED] added the comment: Is it possible to write one? I'm skeptical. -- nosy: +loewis __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2470 __

[issue2470] Need fixer for dl (removed) - ctypes module

2008-03-24 Thread Collin Winter
Collin Winter [EMAIL PROTECTED] added the comment: Can you list the mapping you'd like to see? I've never used dl or ctypes, so I'm not immediately sure how to port from one to the other. __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2470

[issue2470] Need fixer for dl (removed) - ctypes module

2008-03-24 Thread Martin v. Löwis
Martin v. Löwis [EMAIL PROTECTED] added the comment: In the simplest case, convert import dl libc = dl.open(libc.so.6) iconv = libc.call(iconv_open, ISO-8859-1, ISO-8859-2) print(iconv) to import ctypes libc = ctypes.CDLL(libc.so.6) iconv = libc.iconv_open(ISO-8859-1, ISO-8859-2) print(iconv)