From: Kurt B. Kaiser Date: Mon, 19 May 2003 02:07:44 +0000 (+0000) Subject: Let Python inform the user what went wrong with the import. X-Git-Tag: v2.3c1~673 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c626658a2803bb48a25b6c845ab60d72be1ed5d4;p=thirdparty%2FPython%2Fcpython.git Let Python inform the user what went wrong with the import. Modified Files: idle idle.py idle.pyw --- diff --git a/Lib/idlelib/idle b/Lib/idlelib/idle index 449fb0ec90ae..3b08cae2347e 100755 --- a/Lib/idlelib/idle +++ b/Lib/idlelib/idle @@ -7,7 +7,7 @@ except ImportError: try: import PyShell except ImportError: - print "Can't locate PyShell.py" + raise else: import os idledir = os.path.dirname(os.path.abspath(PyShell.__file__)) diff --git a/Lib/idlelib/idle.py b/Lib/idlelib/idle.py index 449fb0ec90ae..3b08cae2347e 100644 --- a/Lib/idlelib/idle.py +++ b/Lib/idlelib/idle.py @@ -7,7 +7,7 @@ except ImportError: try: import PyShell except ImportError: - print "Can't locate PyShell.py" + raise else: import os idledir = os.path.dirname(os.path.abspath(PyShell.__file__)) diff --git a/Lib/idlelib/idle.pyw b/Lib/idlelib/idle.pyw index 2a61720b40f9..767db865a558 100644 --- a/Lib/idlelib/idle.pyw +++ b/Lib/idlelib/idle.pyw @@ -5,7 +5,7 @@ except ImportError: try: import PyShell except ImportError: - print "Can't locate PyShell.py" + raise else: import os idledir = os.path.dirname(os.path.abspath(PyShell.__file__))