[issue38634] Symbol resolution conflict when embeding python in an application using libedit

2021-04-15 Thread STINNER Victor
Change by STINNER Victor : -- nosy: -vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38634] Symbol resolution conflict when embeding python in an application using libedit

2021-04-15 Thread Takuya N
Change by Takuya N : -- nosy: +tnir nosy_count: 7.0 -> 8.0 pull_requests: +24152 pull_request: https://github.com/python/cpython/pull/25420 ___ Python tracker ___

[issue38634] Symbol resolution conflict when embeding python in an application using libedit

2021-02-08 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset e1f77695132e814728cda982f11342a2e3c7272c by Roland Hieber in branch 'master': bpo-13501: allow choosing between readline and libedit (GH-24189) https://github.com/python/cpython/commit/e1f77695132e814728cda982f11342a2e3c7272c --

[issue38634] Symbol resolution conflict when embeding python in an application using libedit

2020-10-08 Thread Colin Watson
Colin Watson added the comment: Here's a reasonably minimal reproduction recipe reduced from real code in the Launchpad test suite that doesn't require compiling a separate C extension. It fails on Ubuntu 18.04 with the gir1.2-gtk-3.0, python3-gi, and xvfb packages installed. (The

[issue38634] Symbol resolution conflict when embeding python in an application using libedit

2020-10-08 Thread Colin Watson
Colin Watson added the comment: FWIW I just ran into what I believe to be this bug with the Launchpad test suite on Python 3.6.9. The output shows some normal test output followed by: No entry for terminal type "unknown"; using dumb terminal settings. bind: Invalid command

[issue38634] Symbol resolution conflict when embeding python in an application using libedit

2019-12-04 Thread STINNER Victor
STINNER Victor added the comment: Thanks serge-sans-paille for the bug report and the fix! I backported it to 3.8 since it could be automated, but I don't think that it's worth it to backport it to 3.7: https://github.com/python/cpython/pull/16986#issuecomment-561711232 --

[issue38634] Symbol resolution conflict when embeding python in an application using libedit

2019-12-04 Thread miss-islington
miss-islington added the comment: New changeset 68669ef7883ea6338ca441e50f4f9d975f54d017 by Miss Islington (bot) in branch '3.8': bpo-38634: Allow non-apple build to cope with libedit (GH-16986) https://github.com/python/cpython/commit/68669ef7883ea6338ca441e50f4f9d975f54d017 --

[issue38634] Symbol resolution conflict when embeding python in an application using libedit

2019-12-04 Thread STINNER Victor
Change by STINNER Victor : -- components: +Library (Lib) versions: +Python 3.8, Python 3.9 ___ Python tracker ___ ___

[issue38634] Symbol resolution conflict when embeding python in an application using libedit

2019-12-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +16945 pull_request: https://github.com/python/cpython/pull/17466 ___ Python tracker ___

[issue38634] Symbol resolution conflict when embeding python in an application using libedit

2019-12-04 Thread STINNER Victor
STINNER Victor added the comment: New changeset 7105319ada2e663659020cbe9fdf7ff38f421ab2 by Victor Stinner (serge-sans-paille) in branch 'master': bpo-38634: Allow non-apple build to cope with libedit (GH-16986)

[issue38634] Symbol resolution conflict when embeding python in an application using libedit

2019-11-04 Thread serge-sans-paille
serge-sans-paille added the comment: @ned I(d rather see this as an evolution of Issue13631, as this solves a problem when libreadline and libedit are both loaded in the same executable. As such, using libedit instead of readline wouldn't solve the issue: what if the program Python is

[issue38634] Symbol resolution conflict when embeding python in an application using libedit

2019-10-29 Thread Ned Deily
Ned Deily added the comment: This appears to be essentially a duplicate of Issue13631 which has long proposed full support of libedit. -- assignee: -> gregory.p.smith nosy: +gregory.p.smith, ned.deily ___ Python tracker

[issue38634] Symbol resolution conflict when embeding python in an application using libedit

2019-10-29 Thread pmp-p
Change by pmp-p : -- nosy: +pmpp ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38634] Symbol resolution conflict when embeding python in an application using libedit

2019-10-29 Thread serge-sans-paille
Change by serge-sans-paille : -- keywords: +patch pull_requests: +16512 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16986 ___ Python tracker

[issue38634] Symbol resolution conflict when embeding python in an application using libedit

2019-10-29 Thread serge-sans-paille
New submission from serge-sans-paille : See https://bugs.llvm.org/show_bug.cgi?id=43830, but basically the follwing code: ``` // a.c #include int main() { Py_Initialize(); PyRun_SimpleString("import readline; print(readline.__doc__)"); return 0; } ``` compiled like this: ``` % gcc