[issue10137] Patch to IDLE for Python 2.7, at Guido's request

2010-10-18 Thread Bruce Sherwood

New submission from Bruce Sherwood bruce.sherw...@gmail.com:

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).

--
components: IDLE
files: idlelib2.7.patch
keywords: patch
messages: 119033
nosy: Bruce.Sherwood
priority: normal
severity: normal
status: open
title: Patch to IDLE for Python 2.7, at Guido's request
type: behavior
versions: Python 2.7
Added file: http://bugs.python.org/file19263/idlelib2.7.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10137
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10137] Patch to IDLE for Python 2.7, at Guido's request

2010-10-18 Thread Brian Curtin

Changes by Brian Curtin cur...@acm.org:


--
nosy: +kbk, taleinat

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10137
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10137] Patch to IDLE for Python 2.7, at Guido's request

2010-10-18 Thread Brian Curtin

Changes by Brian Curtin cur...@acm.org:


--
nosy: +terry.reedy

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10137
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10137] Patch to IDLE for Python 2.7, at Guido's request

2010-10-18 Thread Amaury Forgeot d'Arc

Amaury Forgeot d'Arc amaur...@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 rep...@bugs.python.org
http://bugs.python.org/issue10137
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10137] Patch to IDLE for Python 2.7, at Guido's request

2010-10-18 Thread Ned Deily

Ned Deily n...@acm.org added the comment:

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.

--
nosy: +ned.deily

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10137
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10137] Patch to IDLE for Python 2.7, at Guido's request

2010-10-18 Thread Terry J. Reedy

Terry J. Reedy tjre...@udel.edu added the comment:

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.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10137
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10137] Patch to IDLE for Python 2.7, at Guido's request

2010-10-18 Thread Bruce Sherwood

Bruce Sherwood bruce.sherw...@gmail.com added the comment:

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
rep...@bugs.python.org wrote:

 Amaury Forgeot d'Arc amaur...@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 rep...@bugs.python.org
 http://bugs.python.org/issue10137
 ___


--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10137
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10137] Patch to IDLE for Python 2.7, at Guido's request

2010-10-18 Thread Bruce Sherwood

Bruce Sherwood bruce.sherw...@gmail.com added the comment:

I've rebuilt and resubmitted this patch to Issue10079 as requested by Ned 
Deily. This issue (10137) can now be labeled a duplicate.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10137
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10137] Patch to IDLE for Python 2.7, at Guido's request

2010-10-18 Thread Terry J. Reedy

Changes by Terry J. Reedy tjre...@udel.edu:


--
resolution:  - duplicate
status: open - closed
superseder:  - idlelib for Python 3 with Guilherme Polo GSoC enhancements

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10137
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com