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: test_urllib fails with ValueError
Type: behavior Stage:
Components: Versions: Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, csernazs
Priority: normal Keywords: patch

Created on 2008-10-21 15:19 by csernazs, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
test_urllib.patch csernazs, 2008-10-21 15:19 patch to fix the bug
Messages (2)
msg75031 - (view) Author: Zsolt Cserna (csernazs) * Date: 2008-10-21 15:19
test_urllib regression test fails with ValueError on linux (kernel 2.4,
glibc 2.3):

test_urllib
test test_urllib failed -- Traceback (most recent call last):
  File "/tmp/x/Lib/test/test_urllib.py", line 112, in tearDown
    for k, v in self._saved_environ:
ValueError: too many values to unpack

I think the fix is trivial, but I've attached the patch.

If this bug has been already fixed, sorry for reporting it.
msg75042 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2008-10-21 20:51
Thanks for the report! Fixed in r66992.
History
Date User Action Args
2022-04-11 14:56:40adminsetgithub: 48411
2008-10-21 20:51:30benjamin.petersonsetstatus: open -> closed
resolution: fixed
messages: + msg75042
nosy: + benjamin.peterson
2008-10-21 15:19:19csernazscreate