This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Patch to IDLE for Python 2.7, at Guido's request
Type: behavior Stage:
Components: IDLE Versions: Python 2.7
process
Status: closed Resolution: duplicate
Dependencies: Superseder: idlelib for Python 3 with Guilherme Polo GSoC enhancements
View: 10079
Assigned To: Nosy List: Bruce.Sherwood, amaury.forgeotdarc, kbk, ned.deily, taleinat, terry.reedy
Priority: normal Keywords: patch

Created on 2010-10-18 15:54 by Bruce.Sherwood, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
idlelib2.7.patch Bruce.Sherwood, 2010-10-18 15:53 patch IDLE 2.7 to address problems
Messages (6)
msg119033 - (view) Author: Bruce Sherwood (Bruce.Sherwood) Date: 2010-10-18 15:53
At Guido's request, I've carried out the same update to the IDLE
distributed with Python 2.7 that I submitted for Python 3, to incorporate the work of Guilherme Polo in the Google Summer of Code 2009. Guido was concerned that with significant problems reported for IDLE 2.7, there should be an update despite Python 2.7 itself being essentially frozen. The basic structure for IDLE 3.2 was carried over. The main changes that had to be made were the change in module names between Python 2.7 and Python 3.2 (e.g. Tkinter in 2.7 is tkinter in 3.2).
msg119046 - (view) Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * (Python committer) Date: 2010-10-18 17:44
But this patch is a diff between a 2.7 and a 3.2 version of IDLE, isn't it?  The tkinter->Tkinter renaming is not supposed to happen in the 2.7 branch.
Could you instead show a diff between the present version of IDLE in 2.7 and the result of your work, so we can better see the impact of the change?
msg119063 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2010-10-18 18:55
I believe the enhancements here are the same as submitted for py3k in Issue10079.  Since it is likely the same comments will apply to both variants, I think it would be better to have just one issue, so I would recommend regenerating the patch against the current 2.7 svn top of trunk (or the 2.7 release), attaching the patch to #10079, and closing this as a duplicate.
msg119075 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2010-10-18 20:36
Bruce, what Ned suggests is what I intended with my IDLE-list message, and in accord with usual tracker practice. Issues often apply to multiple versions and thereby require multiple patches and commits. I know you are relatively new at this and very much appreciate you pushing this IDLE update.
msg119095 - (view) Author: Bruce Sherwood (Bruce.Sherwood) Date: 2010-10-18 23:52
Perhaps I've used misleadingt terminology. What I meant is that I did
do a diff between IDLE 2.7 and the result of Guilherme Polo's work,
but the latter code started from Python 3 code and was modified as
needed for 2.7 (e.g. renaming tkinter as Tkinter, etc.) before
generating the patch.

Bruce Sherwood

On Mon, Oct 18, 2010 at 11:44 AM, Amaury Forgeot d'Arc
<report@bugs.python.org> wrote:
>
> Amaury Forgeot d'Arc <amauryfa@gmail.com> added the comment:
>
> But this patch is a diff between a 2.7 and a 3.2 version of IDLE, isn't it?  The tkinter->Tkinter renaming is not supposed to happen in the 2.7 branch.
> Could you instead show a diff between the present version of IDLE in 2.7 and the result of your work, so we can better see the impact of the change?
>
> ----------
> nosy: +amaury.forgeotdarc
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <http://bugs.python.org/issue10137>
> _______________________________________
>
msg119117 - (view) Author: Bruce Sherwood (Bruce.Sherwood) Date: 2010-10-19 04:22
I've rebuilt and resubmitted this patch to Issue10079 as requested by Ned Deily. This issue (10137) can now be labeled a duplicate.
History
Date User Action Args
2022-04-11 14:57:07adminsetgithub: 54346
2010-10-19 04:29:26terry.reedysetstatus: open -> closed
resolution: duplicate
superseder: idlelib for Python 3 with Guilherme Polo GSoC enhancements
2010-10-19 04:22:14Bruce.Sherwoodsetmessages: + msg119117
2010-10-18 23:52:41Bruce.Sherwoodsetmessages: + msg119095
2010-10-18 20:36:20terry.reedysetmessages: + msg119075
2010-10-18 18:55:25ned.deilysetnosy: + ned.deily
messages: + msg119063
2010-10-18 17:44:41amaury.forgeotdarcsetnosy: + amaury.forgeotdarc
messages: + msg119046
2010-10-18 17:29:35brian.curtinsetnosy: + terry.reedy
2010-10-18 17:29:14brian.curtinsetnosy: + kbk, taleinat
2010-10-18 15:54:04Bruce.Sherwoodcreate