[issue13226] Expose RTLD_* constants in the posix module

2013-06-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1da78c7d382b by Andrew Kuchling in branch 'default': #13226: update references from ctypes/DLFCN modules to os module http://hg.python.org/cpython/rev/1da78c7d382b -- ___ Python tracker

[issue13226] Expose RTLD_* constants in the posix module

2011-11-02 Thread STINNER Victor
STINNER Victor added the comment: sys.getdlopenflags() doc and docstring still contain references to ctypes and DLFCN module. -- ___ Python tracker ___

[issue13226] Expose RTLD_* constants in the posix module

2011-10-31 Thread Roundup Robot
Roundup Robot added the comment: New changeset 05e2bdc00c0c by Victor Stinner in branch 'default': Issue #13226: Update sys.setdlopenflags() docstring http://hg.python.org/cpython/rev/05e2bdc00c0c -- ___ Python tracker

[issue13226] Expose RTLD_* constants in the posix module

2011-10-30 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: Python/sysmodule.c still contains references to DLFCN module. -- ___ Python tracker ___ __

[issue13226] Expose RTLD_* constants in the posix module

2011-10-25 Thread STINNER Victor
Changes by STINNER Victor : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue13226] Expose RTLD_* constants in the posix module

2011-10-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset c75427c0da06 by Victor Stinner in branch 'default': Issue #13226: Add RTLD_xxx constants to the os module. These constants can by http://hg.python.org/cpython/rev/c75427c0da06 -- nosy: +python-dev ___ Py

[issue13226] Expose RTLD_* constants in the posix module

2011-10-21 Thread Martin v . Löwis
Martin v. Löwis added the comment: The patch looks fine to me. However, I don't think it meets Charles-François' requirement of moving the constants into an individual module. Rather than living in the unmanageable plat-XXX, they now live in the unmanageable posixmodule.c... -- nosy:

[issue13226] Expose RTLD_* constants in the posix module

2011-10-21 Thread Charles-François Natali
Charles-François Natali added the comment: Note that I'm really +10 on this issue: such constants belong to individual modules rather than to the unmanageable Lib/plat-XXX/. -- nosy: +neologix ___ Python tracker

[issue13226] Expose RTLD_* constants in the posix module

2011-10-20 Thread STINNER Victor
STINNER Victor added the comment: Updated patch: remove "either" in the documentation. Thanks neologix par the review. -- Added file: http://bugs.python.org/file23483/posix_rtld-2.patch ___ Python tracker ___

[issue13226] Expose RTLD_* constants in the posix module

2011-10-19 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue13226] Expose RTLD_* constants in the posix module

2011-10-19 Thread Jakub Wilk
Changes by Jakub Wilk : -- nosy: +jwilk ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/

[issue13226] Expose RTLD_* constants in the posix module

2011-10-19 Thread STINNER Victor
New submission from STINNER Victor : We have a sys.setdlopenflags() function, but required constants are not available on all platforms. The DLFCN is only available on Linux and sunos5 (is plat-sunos5 available for all Solaris and OpenIndiana versions?), but not on OpenBSD, FreBSD, Mac OS X, .