From 83a3560527f9e62bce6adbc12b8ff6b57be8b1ac Mon Sep 17 00:00:00 2001 From: "Kurt B. Kaiser" Date: Fri, 20 Dec 2002 17:18:03 +0000 Subject: "'foo' in str" not implemented in Python 2.2, only single character lookup --- Lib/idlelib/EditorWindow.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py index 4bd766d..5368f27 100644 --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -283,6 +283,7 @@ class EditorWindow: tkMessageBox.showinfo('Advice', "Don't Panic!", master=self.text) def view_readme(self, event=None): + print>>sys.__stderr__, "** __file__: ", __file__ fn=os.path.join(os.path.abspath(os.path.dirname(__file__)),'README.txt') textView.TextViewer(self.top,'IDLEfork - README',fn) @@ -438,7 +439,7 @@ class EditorWindow: f.close() except IOError: return False - return line.startswith('#!') and 'python' in line + return line.startswith('#!') and line.find('python') >= 0 def close_hook(self): if self.flist: -- cgit v0.12