[issue33358] [EASY] x86 Ubuntu Shared 3.x: test_embed.test_pre_initialization_sys_options() fails

2018-05-18 Thread STINNER Victor
STINNER Victor added the comment: Thank you for the fix Pablo! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue33358] [EASY] x86 Ubuntu Shared 3.x: test_embed.test_pre_initialization_sys_options() fails

2018-05-14 Thread Cheryl Sabella
Change by Cheryl Sabella : -- assignee: csabella -> resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue33358] [EASY] x86 Ubuntu Shared 3.x: test_embed.test_pre_initialization_sys_options() fails

2018-04-27 Thread miss-islington
miss-islington added the comment: New changeset dd3ede7537653a62815c2fedbb67d6f2fb870d4c by Miss Islington (bot) in branch '3.7': bpo-33358: Fix test_embed.test_pre_initialization_sys_options (GH-6612) https://github.com/python/cpython/commit/dd3ede7537653a62815c2fedbb67d6f2fb870d4c

[issue33358] [EASY] x86 Ubuntu Shared 3.x: test_embed.test_pre_initialization_sys_options() fails

2018-04-27 Thread miss-islington
Change by miss-islington : -- pull_requests: +6314 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue33358] [EASY] x86 Ubuntu Shared 3.x: test_embed.test_pre_initialization_sys_options() fails

2018-04-27 Thread STINNER Victor
STINNER Victor added the comment: New changeset 4114846265536344538ae44cb8ffd8ce2903faf7 by Victor Stinner (Pablo Galindo) in branch 'master': bpo-33358: Fix test_embed.test_pre_initialization_sys_options (GH-6612) https://github.com/python/cpython/commit/4114846265536344538ae44cb8ffd8ce2903fa

[issue33358] [EASY] x86 Ubuntu Shared 3.x: test_embed.test_pre_initialization_sys_options() fails

2018-04-26 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +6308 stage: needs patch -> patch review ___ Python tracker ___

[issue33358] [EASY] x86 Ubuntu Shared 3.x: test_embed.test_pre_initialization_sys_options() fails

2018-04-26 Thread Cheryl Sabella
Change by Cheryl Sabella : -- assignee: -> csabella nosy: +csabella stage: -> needs patch ___ Python tracker ___ ___ Python-bugs-li

[issue33358] [EASY] x86 Ubuntu Shared 3.x: test_embed.test_pre_initialization_sys_options() fails

2018-04-26 Thread STINNER Victor
STINNER Victor added the comment: To reproduce the bug: ./configure --with-pydebug --enabled-shared make clean make LD_LIBRARY_PATH=$PWD ./python -m test -v test_embed -- ___ Python tracker _

[issue33358] [EASY] x86 Ubuntu Shared 3.x: test_embed.test_pre_initialization_sys_options() fails

2018-04-26 Thread STINNER Victor
STINNER Victor added the comment: It seems like the failure comes from "env = dict(PYTHONPATH=os.pathsep.join(sys.path))" of Lib/test/test_embed.py. The code from test_pre_initialization_api() works properly. The fix seems easy. -- keywords: +easy title: x86 Ubuntu Shared 3.x: test_em