[ python-Feature Requests-1326830 ] python scratchpad (IDLE)

SourceForge.net noreply at sourceforge.net
Sun Oct 16 06:51:27 CEST 2005


Feature Requests item #1326830, was opened at 2005-10-14 10:38
Message generated for change (Comment added) made by kbk
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=355470&aid=1326830&group_id=5470

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: IDLE
Group: None
Status: Open
>Resolution: Rejected
Priority: 5
Submitted By: paul rubin (phr)
>Assigned to: Kurt B. Kaiser (kbk)
>Summary: python scratchpad (IDLE)

Initial Comment:
Lots of times I want to use Idle sort of like a
Mathematica notebook but for Python.  That is, I want
to enter some code and interactively run it, edit it,
run it some more, etc.  Then, at the end, I typically
don't want to save it.  It's like doing a calculation
on scratch paper and throwing away the paper after
finding the answer.

It's a bit of a pain to have to explicitly save such
code in a file, going through the whole file dialog,
after launching to a Python editor window.  Most word
processors will generate an automatic filename like
"Untitled", or "Untitled-1", "Untitled-2", etc., if
"Untitled" already exists.  That makes the dialog a bit
more streamlined.

It would be nice if this type of operation were easier
in IDLE.  I'm not sure of the exact best way.  Here are
some:

1) Have a default filename ("Untitled-<number>.py" for
example) that saves to the user's home dir, or
home/.idle, or maybe some configurable place.  User
could click to confirm (that's probably the easiest) or
IDLE could display some kind of message (preferable)
that doesn't need user interaction.  IDLE has no status
bar right now so maybe it would need one in order to
display such a message conveniently.

I guess the message could be displayed in the Python
shell (by sending an appropriate print statement to the
subprocess) if the user saves by hitting F5 to run the
program.

2) (this is perhaps questionable) The default place to
save the file could be in /tmp.  On hitting F5, the
Python shell would print a message noting that the file
was only in /tmp and hadn't been saved anyplace permanent. 

----------------------------------------------------------------------

>Comment By: Kurt B. Kaiser (kbk)
Date: 2005-10-16 00:51

Message:
Logged In: YES 
user_id=149084

You're breaking my heart.  Pick a file name (how about
reserving 'f'?) Select IDLE's autosave feature in the
Options dialog.  When you F5 a new edit window, and
the Source Must be Saved dialog comes up, hit enter,
type an 'f', hit enter.  Three keystrokes.  

Maybe sometime I'll remove the Source Must be Saved
dialog if IDLE is set to Autosave, then it would be two
keystrokes.

The downside to implementing this is some poor soul
is going to lose significant work that he thought was
saved.  Guido wan't even very happy with Autosave,
though I love it.


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=355470&aid=1326830&group_id=5470


More information about the Python-bugs-list mailing list