[Python-checkins] cpython: Issue #27365: revert temporary rename

terry.reedy python-checkins at python.org
Wed Jun 22 04:51:10 EDT 2016


https://hg.python.org/cpython/rev/54dde0cb10f9
changeset:   102132:54dde0cb10f9
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Wed Jun 22 04:32:06 2016 -0400
summary:
  Issue #27365: revert  temporary rename

files:
  Lib/idlelib/textView.py |  4 ----
  1 files changed, 0 insertions(+), 4 deletions(-)


diff --git a/Lib/idlelib/textView.py b/Lib/idlelib/textView.py
--- a/Lib/idlelib/textView.py
+++ b/Lib/idlelib/textView.py
@@ -77,10 +77,6 @@
         tkMessageBox.showerror(title='File Load Error',
                                message='Unable to load file %r .' % filename,
                                parent=parent)
-    except UnicodeDecodeError as err:
-        tkMessageBox.showerror(title='Unicode Decode Error',
-                               message=str(err),
-                               parent=parent)
     else:
         return view_text(parent, title, contents, modal)
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list