[issue17719] IDLE help text refers to incorrect Python version

2013-04-13 Thread R. David Murray
R. David Murray added the comment: Thanks, Kent. For the record, the issue for the deprecation is #16123, and the issue that introduced the incorrect line is #5066. -- nosy: +r.david.murray resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed

[issue17719] IDLE help text refers to incorrect Python version

2013-04-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset eac4e23ce2fd by R David Murray in branch 'default': #17719: fix incorrect version number in deprecation doc. http://hg.python.org/cpython/rev/eac4e23ce2fd -- nosy: +python-dev ___ Python tracker

[issue17719] IDLE help text refers to incorrect Python version

2013-04-13 Thread Kent Johnson
Kent Johnson added the comment: Note: this text does not appear in Doc/library/idle.rst so it does not have to be corrected there. -- ___ Python tracker ___

[issue17719] IDLE help text refers to incorrect Python version

2013-04-13 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +asvetlov stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue17719] IDLE help text refers to incorrect Python version

2013-04-13 Thread Kent Johnson
New submission from Kent Johnson: The IDLE help text says, "Running without a subprocess: (DEPRECATED in Python 3.5 see Issue 16123)." According to the referenced issue, this feature is scheduled to be deprecated in *3.4* and *removed* in 3.5. The attached patch corrects the help text. --