[Python-checkins] CVS: python/dist/src/Tools/idle ScriptBinding.py

Guido van Rossum guido@cnri.reston.va.us
Thu, 22 Apr 1999 18:27:41 -0400 (EDT)


Update of /projects/cvsroot/python/dist/src/Tools/idle
In directory eric:/projects/python/develop/guido/src/Tools/idle

Modified Files:
	ScriptBinding.py 
Log Message:
Mostly rewritten.  Instead of the old Run module and Debug module,
there are two new commands:

Import module (F5) imports or reloads the module and also adds its
name to the __main__ namespace.  This gets executed in the PyShell
window under control of its debug settings.

Run script (Control-F5) is similar but executes the contents of the
file directly in the __main__ namespace.