Issue 1110205: Make Python Editor Useful Without Full IDLE (original) (raw)

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/41494

classification

Title: Make Python Editor Useful Without Full IDLE
Type: Stage:
Components: IDLE Versions: Python 2.4

process

Status: closed Resolution: rejected
Dependencies: Superseder:
Assigned To: kbk Nosy List: kbk, loewis, sowjanya
Priority: normal Keywords: patch

Created on 2005-01-26 20:54 by sowjanya, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
idlelib.diff sowjanya,2005-01-26 20:54 patch for idlelib
Messages (7)
msg47620 - (view) Author: sowjanya (sowjanya) Date: 2005-01-26 20:54
We are using the Filelist class from idlelib to create Python syntax aware source code editor in our applications. In order to be able to embed the code editor window into a Tk graphical user interface and specify the width and height of the editor (in lines and columns) we had to modify the EditorWidow and ScriptBinding classes to accept a 'top' argument (container in which to create the editor), and 'width' and 'height' arguments. We are submitting the patches for your consideration to be included into the next release of idlelib1.2a0. The patches were generated using the following command: diff -c old new
msg47621 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2005-03-03 23:03
Logged In: YES user_id=21627 Kurt, can you please take a look? If not, please unassign.
msg47622 - (view) Author: Kurt B. Kaiser (kbk) * (Python committer) Date: 2005-03-04 00:50
Logged In: YES user_id=149084 May I assume that this is a copy of Idlefork Patch 796254? Are you the same people who submitted that anonymous patch? If so, thanks for the context diff.
msg47623 - (view) Author: sowjanya (sowjanya) Date: 2005-03-04 18:18
Logged In: YES user_id=1202212 I couldn't find Idlefork Patch 796254 to make sure whether it is ours. Could you please send me an url for this patch or guide me in searching it. Thanks Sowjanya
msg47624 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2005-03-04 19:06
Logged In: YES user_id=21627 http://sourceforge.net/tracker/index.php?func=detail&aid=796254&group_id=9579&atid=309579
msg47625 - (view) Author: sowjanya (sowjanya) Date: 2005-03-04 21:38
Logged In: YES user_id=1202212 Yes we are the same people.What i sent supersedes the patch previously sent to you. Thanks Sowjanya
msg47626 - (view) Author: Kurt B. Kaiser (kbk) * (Python committer) Date: 2007-02-05 04:29
It seems to me that this further complicates what is an already fairly confusing part of the code. I'd rather not do that.
History
Date User Action Args
2022-04-11 14:56:09 admin set github: 41494
2005-01-26 20:54:48 sowjanya create