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: Broken zipfile with python 3.2 on osx
Type: behavior Stage: needs patch
Components: Library (Lib) Versions: Python 3.2
process
Status: closed Resolution: duplicate
Dependencies: Superseder: Broken zipfile with python 3.2 on osx
View: 8442
Assigned To: Nosy List: georg.brandl, loewis, ronaldoussoren
Priority: release blocker Keywords:

Created on 2010-04-18 15:15 by ronaldoussoren, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg103496 - (view) Author: Ronald Oussoren (ronaldoussoren) * (Python committer) Date: 2010-04-18 15:15
In the output of test_distutils with python 3.2 (current version checkout):
======================================================================
ERROR: test_prune_file_list (distutils.tests.test_sdist.SDistTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Users/ronald/Projects/python/python-3.x/Lib/distutils/tests/test_sdist.py", line 131, in test_prune_file_list
    zip_file = zipfile.ZipFile(join(dist_folder, 'fake-1.0.zip'))
  File "/Users/ronald/Projects/python/python-3.x/Lib/zipfile.py", line 684, in __init__
    self._GetContents()
  File "/Users/ronald/Projects/python/python-3.x/Lib/zipfile.py", line 710, in _GetContents
    self._RealGetContents()
  File "/Users/ronald/Projects/python/python-3.x/Lib/zipfile.py", line 758, in _RealGetContents
    filename = filename.decode('cp437')
LookupError: unknown encoding: cp437
msg103498 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2010-04-18 15:22
Duplicate of #8442
History
Date User Action Args
2022-04-11 14:57:00adminsetnosy: + georg.brandl
github: 52690
2010-04-18 15:22:16loewissetstatus: open -> closed

nosy: + loewis
messages: + msg103498

superseder: Broken zipfile with python 3.2 on osx
resolution: duplicate
2010-04-18 15:15:39ronaldoussorencreate