This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Lib/test/test_cookielib declares utf-8 encoding, but contains non-valid bytes
Type: Stage:
Components: Versions: Python 2.6, Python 2.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: brett.cannon Nosy List: brett.cannon, leosoto
Priority: normal Keywords:

Created on 2008-07-02 20:06 by leosoto, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (5)
msg69115 - (view) Author: Leonardo Soto (leosoto) Date: 2008-07-02 20:06
http://svn.python.org/projects/python/branches/release25-maint/Lib/test/test_cookielib.py
contains non-utf8 bytes.

Currently, That confuses Jython.
msg69132 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2008-07-02 21:54
Well, r64673 was a failed attempt at fixing this by blindly changing the
file over to UTF-8. But r64677 reverted the previous commit and just
changed the encoding specification for the file.

I am not backporting to 2.5 and forward-porting to 3.0.
msg69135 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2008-07-02 22:09
Backported to 2.5 in r64680 and blocked/merged in 3.0 (which had no
issues) in r64678 and r64679.
msg69136 - (view) Author: Leonardo Soto (leosoto) Date: 2008-07-02 22:30
Thanks, that was fast!
msg69162 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2008-07-03 05:08
On Wed, Jul 2, 2008 at 3:30 PM, Leonardo Soto <report@bugs.python.org> wrote:
>
> Leonardo Soto <leo.soto@gmail.com> added the comment:
>
> Thanks, that was fast!
>

It was simple and came into my inbox at just the right time. =)
History
Date User Action Args
2022-04-11 14:56:36adminsetgithub: 47511
2008-07-03 05:08:24brett.cannonsetmessages: + msg69162
2008-07-02 22:30:27leosotosetmessages: + msg69136
2008-07-02 22:09:54brett.cannonsetstatus: pending -> closed
assignee: brett.cannon
messages: + msg69135
versions: + Python 2.6
2008-07-02 21:54:18brett.cannonsetstatus: open -> pending
resolution: fixed
messages: + msg69132
nosy: + brett.cannon
2008-07-02 20:06:53leosotocreate