summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2016-12-22 04:43:50 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2016-12-22 04:43:50 (GMT)
commit536e7a2174e4dcc1a561fa1d225972431ace37ab (patch)
tree1b51726ac8ab07edd6902b1eea8b0bea68699513
parent85add4783ef9c7bc459638bb36f1172ed6a18ba6 (diff)
downloadcpython-536e7a2174e4dcc1a561fa1d225972431ace37ab.zip
cpython-536e7a2174e4dcc1a561fa1d225972431ace37ab.tar.gz
cpython-536e7a2174e4dcc1a561fa1d225972431ace37ab.tar.bz2
Issue 28923: Remove editor artifacts from Tix.py,
including encoding not recognized by codecs.lookup.
-rw-r--r--Lib/lib-tk/Tix.py4
-rw-r--r--Misc/NEWS3
2 files changed, 3 insertions, 4 deletions
diff --git a/Lib/lib-tk/Tix.py b/Lib/lib-tk/Tix.py
index 45e8a90..d0f8fe7 100644
--- a/Lib/lib-tk/Tix.py
+++ b/Lib/lib-tk/Tix.py
@@ -1,7 +1,3 @@
-# -*-mode: python; fill-column: 75; tab-width: 8; coding: iso-latin-1-unix -*-
-#
-# $Id$
-#
# Tix.py -- Tix widget wrappers.
#
# For Tix, see http://tix.sourceforge.net
diff --git a/Misc/NEWS b/Misc/NEWS
index 9f749f4..97d77a6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,6 +15,9 @@ Core and Builtins
Library
-------
+- Issue 28923: Remove editor artifacts from Tix.py,
+ including encoding not recognized by codecs.lookup.
+
- Issue #29019: Fix dict.fromkeys(x) overallocates when x is sparce dict.
Original patch by Rasmus Villemoes.