[issue18093] Move main functions to a separate Programs directory

2014-09-25 Thread Nick Coghlan
Nick Coghlan added the comment: Thanks for spotting that Victor - should be fixed by that last commit with your change. -- resolution: -> fixed status: open -> closed ___ Python tracker __

[issue18093] Move main functions to a separate Programs directory

2014-09-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset c87e00a6258d by Nick Coghlan in branch 'default': Issue #18093: fix test_capi test skip due to _testembed move https://hg.python.org/cpython/rev/c87e00a6258d -- ___ Python tracker

[issue18093] Move main functions to a separate Programs directory

2014-09-25 Thread STINNER Victor
STINNER Victor added the comment: test_capi.patch fixes test_capi to be able to run _testembed in test_capi. -- Added file: http://bugs.python.org/file36720/test_capi.patch ___ Python tracker __

[issue18093] Move main functions to a separate Programs directory

2014-09-25 Thread STINNER Victor
STINNER Victor added the comment: _testembed was moved from Modules to Programs but test_capi was not updated: it still looks for test_embed in Modules. $ ./configure --with-pydebug $ make $ ./python -m test -v test_capi ... test_forced_io_encoding (test.test_capi.EmbeddingTests) ... skipped "

[issue18093] Move main functions to a separate Programs directory

2014-07-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset 413017768dde by Ned Deily in branch 'default': Issue #18093: Create Programs directory in build location for http://hg.python.org/cpython/rev/413017768dde -- ___ Python tracker

[issue18093] Move main functions to a separate Programs directory

2014-07-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset 766570a5d607 by Zachary Ware in branch 'default': Issue #18093: Give the Windows build _testembed.c's new location. http://hg.python.org/cpython/rev/766570a5d607 -- ___ Python tracker

[issue18093] Move main functions to a separate Programs directory

2014-07-25 Thread Nick Coghlan
Nick Coghlan added the comment: Zach, regarding the Windows executables - up to you if you want to open an issue to move them. These ones I particularly wanted to move because I found having them in Modules to be genuinely confusing when working on the startup code. -- __

[issue18093] Move main functions to a separate Programs directory

2014-07-25 Thread Nick Coghlan
Nick Coghlan added the comment: Prompted to finally get back to this by the python-dev discussion about PEP 432 (as separating these out helps keep the moving parts clear when working on the startup sequence) In response to Eric's question, Modules/main.c is part of the CPython runtime, rathe

[issue18093] Move main functions to a separate Programs directory

2014-07-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7640af73c19d by Nick Coghlan in branch 'default': Add missing NEWS entry for issue #18093 http://hg.python.org/cpython/rev/7640af73c19d -- ___ Python tracker _

[issue18093] Move main functions to a separate Programs directory

2014-07-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset 88a532a31eb3 by Nick Coghlan in branch 'default': Issue #18093: Factor out the programs that embed the runtime http://hg.python.org/cpython/rev/88a532a31eb3 -- nosy: +python-dev ___ Python tracker

[issue18093] Move main functions to a separate Programs directory

2013-07-03 Thread Eric Snow
Eric Snow added the comment: What about Modules/main.c? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue18093] Move main functions to a separate Programs directory

2013-07-03 Thread Eric Snow
Eric Snow added the comment: Looks good to me. What else needs to be done in this area that will help with work on PEP 432? -- ___ Python tracker ___ __

[issue18093] Move main functions to a separate Programs directory

2013-06-26 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue18093] Move main functions to a separate Programs directory

2013-05-31 Thread Zachary Ware
Zachary Ware added the comment: I can confirm that the patch doesn't break building on Windows. Would it make any sense to move Windows-specific sources for things like kill_python.exe (PCbuild/kill_python.c), make_buildinfo.exe, make_versioninfo.exe, py.exe (PC/launcher.c) into Programs? Or

[issue18093] Move main functions to a separate Programs directory

2013-05-29 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue18093] Move main functions to a separate Programs directory

2013-05-29 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue18093] Move main functions to a separate Programs directory

2013-05-29 Thread Tshepang Lekhonkhobe
Changes by Tshepang Lekhonkhobe : -- nosy: +tshepang ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue18093] Move main functions to a separate Programs directory

2013-05-29 Thread Stefan Drees
Changes by Stefan Drees : -- nosy: +dilettant ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue18093] Move main functions to a separate Programs directory

2013-05-29 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- nosy: +barry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue18093] Move main functions to a separate Programs directory

2013-05-29 Thread Nick Coghlan
Changes by Nick Coghlan : -- Removed message: http://bugs.python.org/msg190293 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue18093] Move main functions to a separate Programs directory

2013-05-29 Thread Nick Coghlan
Changes by Nick Coghlan : Removed file: http://bugs.python.org/file30408/move_programs.diff ___ Python tracker ___ ___ Python-bugs-list mailin

[issue18093] Move main functions to a separate Programs directory

2013-05-29 Thread Nick Coghlan
Changes by Nick Coghlan : Added file: http://bugs.python.org/file30409/move_programs.git.diff ___ Python tracker ___ ___ Python-bugs-list mail

[issue18093] Move main functions to a separate Programs directory

2013-05-29 Thread Nick Coghlan
New submission from Nick Coghlan: This patch moves the C level main functions for python, _testembed and _freeze_importlib to a new Programs directory. I added README files with my current understanding of the expected contents of the Python, Objects, Modules and Programs directories and also

[issue18093] Move main functions to a separate Programs directory

2013-05-29 Thread Nick Coghlan
Nick Coghlan added the comment: Note that the two patches are the same, I was just curious to see the difference in handling between them in terms of the review integration. -- ___ Python tracker _