From: Brett Cannon Date: Wed, 2 Jul 2008 22:08:29 +0000 (+0000) Subject: Backport of r64677. X-Git-Tag: v2.5.3c1~82 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6d7f9375a5181925f561720cdbce0a618a57606a;p=python Backport of r64677. --- diff --git a/Lib/test/test_cookielib.py b/Lib/test/test_cookielib.py index 991506cb54..66f9a83041 100644 --- a/Lib/test/test_cookielib.py +++ b/Lib/test/test_cookielib.py @@ -1,4 +1,4 @@ -# -*- coding: utf-8 -*- +# -*- coding: latin-1 -*- """Tests for cookielib.py.""" import re, os, time diff --git a/Misc/NEWS b/Misc/NEWS index ebaefd48c4..c8fbedf8f2 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -117,6 +117,8 @@ Extension Modules Tests ----- +- Issue #3261: test_cookielib had an improper file encoding specified. + - Patch #2232: os.tmpfile might fail on Windows if the user has no permission to create files in the root directory.