diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2016-12-22 04:43:50 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2016-12-22 04:43:50 (GMT) |
commit | 536e7a2174e4dcc1a561fa1d225972431ace37ab (patch) | |
tree | 1b51726ac8ab07edd6902b1eea8b0bea68699513 | |
parent | 85add4783ef9c7bc459638bb36f1172ed6a18ba6 (diff) | |
download | cpython-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.py | 4 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
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 @@ -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. |