changeset: 105774:ef03aff3b195 branch: 2.7 parent: 105767:78bf34b6a713 user: Terry Jan Reedy date: Wed Dec 21 23:43:50 2016 -0500 files: Lib/lib-tk/Tix.py Misc/NEWS description: Issue 28923: Remove editor artifacts from Tix.py, including encoding not recognized by codecs.lookup. diff -r 78bf34b6a713 -r ef03aff3b195 Lib/lib-tk/Tix.py --- a/Lib/lib-tk/Tix.py Wed Dec 21 12:55:28 2016 +0200 +++ b/Lib/lib-tk/Tix.py Wed Dec 21 23:43:50 2016 -0500 @@ -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 -r 78bf34b6a713 -r ef03aff3b195 Misc/NEWS --- a/Misc/NEWS Wed Dec 21 12:55:28 2016 +0200 +++ b/Misc/NEWS Wed Dec 21 23:43:50 2016 -0500 @@ -15,6 +15,9 @@ 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.