Author: kurt.kaiser
Date: Sat Aug 11 06:20:51 2007
New Revision: 56911

Modified:
   python/branches/py3k/Lib/idlelib/PyShell.py
Log:
Fix what appears to be a very old bug.  Tkinter in struni is more intolerant
of non-existant text widget 'marks', it seems.


Modified: python/branches/py3k/Lib/idlelib/PyShell.py
==============================================================================
--- python/branches/py3k/Lib/idlelib/PyShell.py (original)
+++ python/branches/py3k/Lib/idlelib/PyShell.py Sat Aug 11 06:20:51 2007
@@ -961,6 +961,7 @@
     """
 
     def begin(self):
+        self.text.mark_set("iomark", "insert")
         self.resetoutput()
         if use_subprocess:
             nosub = ''
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to