[issue16123] IDLE - deprecate running without a subprocess

2020-06-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: Deprecation has been done and a message is printed under the splash screen. With 5 more years of maintenance experience under deprecation, I have not experienced -n mode as a maintenance burden. So I have no inclination at present to remove it (or even imp

[issue16123] IDLE - deprecate running without a subprocess

2015-11-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: I have some different ideas for this issue that would not necessarily involve removing -n. While -n is can be an inferior experience for users (user code blocks the GUI, other interference, especially tkinter), the reason given for deprecation is to simplify

[issue16123] IDLE - deprecate running without a subprocess

2015-08-24 Thread Terry J. Reedy
Terry J. Reedy added the comment: Torgil, thank you for the interesting feedback. I will respond to your four paragraphs slightly out of order. 1. Starting Idle with '-n', I verified that running 'print(a)' from the editor works after entering 'a=1' in the shell. The intended purpose of the ed

[issue16123] IDLE - deprecate running without a subprocess

2015-08-24 Thread Torgil Svensson
Torgil Svensson added the comment: I frequently use IDLE as an interactive shell to Python with the Editor attached. It's very nice for this purpose as it's lightweight and embedded in Python delivery. This is only possible with -n flag as without it each press on F5 will restart the interpret

[issue16123] IDLE - deprecate running without a subprocess

2014-07-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: It would be nice if we are able to to this in 3.5, because the dependecy is accomplished, but not doing so is not a release blocker. -- dependencies: +Idle: use pipes instead of sockets to talk with user subprocess priority: deferred blocker -> normal s

[issue16123] IDLE - deprecate running without a subprocess

2014-03-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: Every enhancement issue can be bumped to 3.5. -- versions: -Python 3.4 ___ Python tracker ___ ___ P

[issue16123] IDLE - deprecate running without a subprocess

2014-03-15 Thread Larry Hastings
Larry Hastings added the comment: If the 3.4 changes are done, can we either close this or remove 3.4 from the versions? -- nosy: +larry ___ Python tracker ___ _

[issue16123] IDLE - deprecate running without a subprocess

2014-02-01 Thread Kurt B. Kaiser
Changes by Kurt B. Kaiser : -- nosy: +kbk ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue16123] IDLE - deprecate running without a subprocess

2013-08-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: I opened #18823 "Idle: use pipes instead of sockets to talk with user subprocess" I think this or a socket fix is needed before we remove -n. -- ___ Python tracker ___

[issue16123] IDLE - deprecate running without a subprocess

2013-08-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: Slight correction: While I do not believe I have seen *clipboard* contents pasted, after running a program from the editor that prints (to the shell), I *have* seen the last line reprinted when trying to enter something new as the prompt. This sometimes might

[issue16123] IDLE - deprecate running without a subprocess

2013-03-22 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: > The issue is usually with firewalls, security software, socket issues, etc Surely nowadays there are better ways than sockets to communicate between processes? Pipes? -- nosy: +amaury.forgeotdarc ___ Python

[issue16123] IDLE - deprecate running without a subprocess

2013-02-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: Roger has submitted patches for some of the items on your list (off topic for this issue), especially crashes and stalls. Some still need review and commits. Mac tends to be the most difficult platform to get tests on. While these would be better discussed on

[issue16123] IDLE - deprecate running without a subprocess

2013-02-22 Thread Ramchandra Apte
Ramchandra Apte added the comment: On 22 February 2013 22:56, Raymond Hettinger wrote: > > Raymond Hettinger added the comment: > > The issue is usually with firewalls, security software, socket issues, > etc. While the root problem lies outside IDLE, often the simplest way to > get someone up

[issue16123] IDLE - deprecate running without a subprocess

2013-02-22 Thread Raymond Hettinger
Raymond Hettinger added the comment: The issue is usually with firewalls, security software, socket issues, etc. While the root problem lies outside IDLE, often the simplest way to get someone up and running is to use the -n option. This is one of many annoyances that arise when teaching stud

[issue16123] IDLE - deprecate running without a subprocess

2013-02-21 Thread Roger Serwy
Roger Serwy added the comment: @Raymond: What is so broken about IDLE that requires using "-n" to fix it? Let's try to fix those problems rather than keeping up the maintenance burden of supporting two execution modes. -- ___ Python tracker

[issue16123] IDLE - deprecate running without a subprocess

2013-02-21 Thread Raymond Hettinger
Raymond Hettinger added the comment: FWIW, I help a lot of people with IDLE problems and sometimes the -n option is the only thing that saves them. ISTM that removing it is not such as a good idea. -- nosy: +rhettinger ___ Python tracker

[issue16123] IDLE - deprecate running without a subprocess

2013-02-21 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- components: +IDLE ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue16123] IDLE - deprecate running without a subprocess

2012-12-05 Thread Andrew Svetlov
Andrew Svetlov added the comment: I think that usage is not officially supported, so we cannot grant this way will work forever. -- ___ Python tracker ___ __

[issue16123] IDLE - deprecate running without a subprocess

2012-12-04 Thread Campbell Barton
Campbell Barton added the comment: @Roger, I should have mentioned I had to add "-n" to the argv so subprocess would be disabled. -- ___ Python tracker ___ _

[issue16123] IDLE - deprecate running without a subprocess

2012-12-04 Thread Roger Serwy
Roger Serwy added the comment: Campbell, your example runs IDLE *with* a subprocess. The "use_subprocess" flag defaults to True. -- ___ Python tracker ___ __

[issue16123] IDLE - deprecate running without a subprocess

2012-12-04 Thread Campbell Barton
Campbell Barton added the comment: Hi, I just found a use for this feature, with `use_subprocess` being optional its possible to load idle into a running python session. -- import idlelib import idlelib.PyShell idlelib.PyShell.main() -- This allows you to load idle inside an applic

[issue16123] IDLE - deprecate running without a subprocess

2012-10-05 Thread Andrew Svetlov
Andrew Svetlov added the comment: Change priority to deferred blocker for reminding to remove no-subprocess mode in 3.5. Thanks, Roger. -- priority: normal -> deferred blocker ___ Python tracker _

[issue16123] IDLE - deprecate running without a subprocess

2012-10-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0430986a8c03 by Andrew Svetlov in branch 'default': Issue #16123: IDLE - deprecate running without a subprocess. http://hg.python.org/cpython/rev/0430986a8c03 -- nosy: +python-dev ___ Python tracker

[issue16123] IDLE - deprecate running without a subprocess

2012-10-05 Thread Andrew Svetlov
Andrew Svetlov added the comment: Looks good for me. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue16123] IDLE - deprecate running without a subprocess

2012-10-05 Thread Roger Serwy
Roger Serwy added the comment: I agree that a message within the shell would be more informative to the user. The _rev1 patch also adds a message to the shell. -- Added file: http://bugs.python.org/file27437/idle_deprecate_rev1.patch ___ Python track

[issue16123] IDLE - deprecate running without a subprocess

2012-10-05 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue16123] IDLE - deprecate running without a subprocess

2012-10-05 Thread Ned Deily
Ned Deily added the comment: A popup menu on every invocation of IDLE would be a very user-unfriendly thing to do. If it's possible that a print to stderr might not be visible to a user, another solution might be to use the approach in Lib/idlelib/macosxSupport.py tkVersionWarning which cause

[issue16123] IDLE - deprecate running without a subprocess

2012-10-04 Thread Ramchandra Apte
Ramchandra Apte added the comment: Make it pop up a dialog with the message too in the patch, please. -- nosy: +ramchandra.apte ___ Python tracker ___ ___

[issue16123] IDLE - deprecate running without a subprocess

2012-10-03 Thread Roger Serwy
New submission from Roger Serwy: Removing the option of running IDLE without a subprocess would simplify the maintenance of IDLE. This should be deprecated for 3.4 and then fully removed in 3.5. Here's a link to a brief discussion on IDLE-dev: http://mail.python.org/pipermail/idle-dev/2012-Ju