------------------------------------------------------------ revno: 1843 committer: Mark Sapiro <m...@msapiro.net> branch nick: 2.1 timestamp: Sat 2020-04-25 20:16:14 -0700 message: Workaround non-ascii in string.lowercase. modified: Mailman/Archiver/pipermail.py NEWS
-- lp:mailman/2.1 https://code.launchpad.net/~mailman-coders/mailman/2.1 Your team Mailman Checkins is subscribed to branch lp:mailman/2.1. To unsubscribe from this branch go to https://code.launchpad.net/~mailman-coders/mailman/2.1/+edit-subscription
=== modified file 'Mailman/Archiver/pipermail.py' --- Mailman/Archiver/pipermail.py 2018-05-03 21:23:47 +0000 +++ Mailman/Archiver/pipermail.py 2020-04-26 03:16:14 +0000 @@ -12,6 +12,10 @@ from cStringIO import StringIO from string import lowercase +# Work around for some misguided Python packages that add iso-8859-1 +# accented characters to string.lowercase. +lowercase = lowercase[:26] + __version__ = '0.09 (Mailman edition)' VERSION = __version__ CACHESIZE = 100 # Number of slots in the cache === modified file 'NEWS' --- NEWS 2020-04-26 03:14:40 +0000 +++ NEWS 2020-04-26 03:16:14 +0000 @@ -15,6 +15,9 @@ - Bounce recognition for a non-compliant Yahoo format is added. + - Archiving workaround for non-ascii in string.lowercase in some Python + packages is added. + 2.1.30 (13-Apr-2020) New Features
_______________________________________________ Mailman-checkins mailing list Mailman-checkins@python.org Unsubscribe: https://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org