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.

Author serhiy.storchaka
Recipients ned.deily, serhiy.storchaka, sjt
Date 2016-09-12.14:15:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1473689757.66.0.728855031655.issue28080@psf.upfronthosting.co.za>
In-reply-to
Content
Python is programming language, I don't understand what you mean saying "available to nonprogrammers". As a programmer you can recode ZipInfo name before outputting or what you want to do with it:

    filename = filename.encode('cp437').decode(encoding)

In command line you can can use iconv or other converters:

    python3 -m zipfile -l myzip.zip | iconv -t cp437 | iconv -f "$encoding"

This is not very handy, but works in most cases.
History
Date User Action Args
2016-09-12 14:15:57serhiy.storchakasetrecipients: + serhiy.storchaka, ned.deily, sjt
2016-09-12 14:15:57serhiy.storchakasetmessageid: <1473689757.66.0.728855031655.issue28080@psf.upfronthosting.co.za>
2016-09-12 14:15:57serhiy.storchakalinkissue28080 messages
2016-09-12 14:15:57serhiy.storchakacreate