summaryrefslogtreecommitdiff
path: root/Lib/idlelib/ScriptBinding.py
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2003-05-15 23:23:21 +0000
committerKurt B. Kaiser <kbk@shore.net>2003-05-15 23:23:21 +0000
commit24fc66c8a39b63a5b01ac92a9f73b92ad98b4367 (patch)
tree7cf0ade4902710455562dfb9e6cc7f59ff662885 /Lib/idlelib/ScriptBinding.py
parent9b80d5da9bbe753c3b5c06ee28592b0bb392d961 (diff)
downloadcpython-24fc66c8a39b63a5b01ac92a9f73b92ad98b4367.tar.gz
1. When a module is run from an EditorWindow, if its directory is not in
sys.path, prepend it. This allows the module to import other modules in the same directory. Do the same for a script run from the command line. 2. Tweak the IDLE usage message a bit more. SF Bug 706860 (closed) SF Patch 686254 (reject specific solution) SF Patch 507327 (similar) M PyShell.py M ScriptBinding.py
Diffstat (limited to 'Lib/idlelib/ScriptBinding.py')
-rw-r--r--Lib/idlelib/ScriptBinding.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/idlelib/ScriptBinding.py b/Lib/idlelib/ScriptBinding.py
index d404fc90ce..252526d563 100644
--- a/Lib/idlelib/ScriptBinding.py
+++ b/Lib/idlelib/ScriptBinding.py
@@ -144,8 +144,9 @@ class ScriptBinding:
if (not _sys.argv or
_basename(_sys.argv[0]) != _basename(_filename)):
_sys.argv = [_filename]
- del _filename, _sys, _basename
- \n""" % `filename`)
+ del _filename, _sys, _basename
+ \n""" % `filename`)
+ interp.prepend_syspath(filename)
interp.runcode(code)
def getfilename(self):