From d32e78fd3c447278cf5539164f8764fbe5ae1cca Mon Sep 17 00:00:00 2001 From: Tao Bao Date: Wed, 17 Jan 2018 10:08:48 -0800 Subject: [PATCH] releasetools: Add a note for the ZipInfo._decodeExtra() workaround. Test: N/A Change-Id: I9e84fc27230182f17c2fda0df57a2c149281dcda --- tools/releasetools/check_target_files_signatures.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/tools/releasetools/check_target_files_signatures.py b/tools/releasetools/check_target_files_signatures.py index c4877e092..db63fd381 100755 --- a/tools/releasetools/check_target_files_signatures.py +++ b/tools/releasetools/check_target_files_signatures.py @@ -53,11 +53,13 @@ import zipfile import common -# Work around a bug in python's zipfile module that prevents opening -# of zipfiles if any entry has an extra field of between 1 and 3 bytes -# (which is common with zipaligned APKs). This overrides the -# ZipInfo._decodeExtra() method (which contains the bug) with an empty -# version (since we don't need to decode the extra field anyway). +# Work around a bug in Python's zipfile module that prevents opening of zipfiles +# if any entry has an extra field of between 1 and 3 bytes (which is common with +# zipaligned APKs). This overrides the ZipInfo._decodeExtra() method (which +# contains the bug) with an empty version (since we don't need to decode the +# extra field anyway). +# Issue #14315: https://bugs.python.org/issue14315, fixed in Python 2.7.8 and +# Python 3.5.0 alpha 1. class MyZipInfo(zipfile.ZipInfo): def _decodeExtra(self): pass