From: Terry Jan Reedy Date: Thu, 22 Dec 2016 04:43:50 +0000 (-0500) Subject: Issue 28923: Remove editor artifacts from Tix.py, X-Git-Tag: v2.7.14rc1~326 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=536e7a2174e4dcc1a561fa1d225972431ace37ab;p=thirdparty%2FPython%2Fcpython.git Issue 28923: Remove editor artifacts from Tix.py, including encoding not recognized by codecs.lookup. --- diff --git a/Lib/lib-tk/Tix.py b/Lib/lib-tk/Tix.py index 45e8a90374b5..d0f8fe750cee 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 9f749f424166..97d77a65d618 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.