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 eric.araujo
Recipients alexis, eric.araujo, pitrou
Date 2011-08-19.15:59:43
SpamBayes Score 0.002928171
Marked as misclassified No
Message-id <1313769584.59.0.904304074564.issue12678@psf.upfronthosting.co.za>
In-reply-to
Content
I don’t understand this part:

Traceback (most recent call last):
  File "distutils\tests\test_sdist.py", line 385, in test_manual_manifest
    archive = tarfile.open(archive_name)
  File "tarfile.py", line 1736, in open
    return func(name, "r", fileobj, **kwargs)
  File "tarfile.py", line 1806, in gzopen
    fileobj.close()
AttributeError: 'NoneType' object has no attribute 'close'

The code is protected by a skipUnless(ZLIB_SUPPORT), so how can the tarfile object be None?
History
Date User Action Args
2011-08-19 15:59:44eric.araujosetrecipients: + eric.araujo, pitrou, alexis
2011-08-19 15:59:44eric.araujosetmessageid: <1313769584.59.0.904304074564.issue12678@psf.upfronthosting.co.za>
2011-08-19 15:59:44eric.araujolinkissue12678 messages
2011-08-19 15:59:43eric.araujocreate