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 sleard1
Recipients
Date 2003-08-19.19:18:00
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content

Regarding,
Bugs item #765456, was opened at 2003-07-03 18:42

I have also recently ran into this same bug on Solaris
8 with Python-2.3.

mars$ /files/local/src/Python-2.3/python test_zipimport.py
testAFakeZlib (__main__.UncompressedZipImportTestCase)
... ERROR
testBadMTime (__main__.UncompressedZipImportTestCase)
... ok
testBadMagic (__main__.UncompressedZipImportTestCase)
... ok
testBadMagic2 (__main__.UncompressedZipImportTestCase)
... ok
testBoth (__main__.UncompressedZipImportTestCase) ... ok
testDeepPackage
(__main__.UncompressedZipImportTestCase) ... ok
testEmptyPy (__main__.UncompressedZipImportTestCase) ... ok
testGetData (__main__.UncompressedZipImportTestCase) ... ok
testImport_WithStuff
(__main__.UncompressedZipImportTestCase) ... ok
testImporterAttr
(__main__.UncompressedZipImportTestCase) ... ok
testPackage (__main__.UncompressedZipImportTestCase) ... ok
testPy (__main__.UncompressedZipImportTestCase) ... ok
testPyc (__main__.UncompressedZipImportTestCase) ... ok
testAFakeZlib (__main__.CompressedZipImportTestCase)
... ERROR
testBadMTime (__main__.CompressedZipImportTestCase) ... ok
testBadMagic (__main__.CompressedZipImportTestCase) ... ok
testBadMagic2 (__main__.CompressedZipImportTestCase) ... ok
testBoth (__main__.CompressedZipImportTestCase) ... ok
testDeepPackage (__main__.CompressedZipImportTestCase)
... ok
testEmptyPy (__main__.CompressedZipImportTestCase) ... ok
testGetData (__main__.CompressedZipImportTestCase) ... ok
testImport_WithStuff
(__main__.CompressedZipImportTestCase) ... ok
testImporterAttr (__main__.CompressedZipImportTestCase)
... ok
testPackage (__main__.CompressedZipImportTestCase) ... ok
testPy (__main__.CompressedZipImportTestCase) ... ok
testPyc (__main__.CompressedZipImportTestCase) ... ok

======================================================================
ERROR: testAFakeZlib
(__main__.UncompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "test_zipimport.py", line 102, in testAFakeZlib
    self.doTest(".py", files, "zlib")
  File "test_zipimport.py", line 78, in doTest
    file = mod.get_file()
AttributeError: 'module' object has no attribute 'get_file'

======================================================================
ERROR: testAFakeZlib (__main__.CompressedZipImportTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "test_zipimport.py", line 102, in testAFakeZlib
    self.doTest(".py", files, "zlib")
  File "test_zipimport.py", line 78, in doTest
    file = mod.get_file()
AttributeError: 'module' object has no attribute 'get_file'

----------------------------------------------------------------------
Ran 26 tests in 0.097s

FAILED (errors=2)
Traceback (most recent call last):
  File "test_zipimport.py", line 215, in ?
    test_main()
  File "test_zipimport.py", line 211, in test_main
    CompressedZipImportTestCase
  File
"/files/local/src/Python-2.3/Lib/test/test_support.py",
line 262, in run_unittest
    run_suite(suite, testclass)
  File
"/files/local/src/Python-2.3/Lib/test/test_support.py",
line 246, in run_suite
    raise TestFailed(msg)
test.test_support.TestFailed: errors occurred; run in
verbose mode for details




History
Date User Action Args
2007-08-23 14:16:14adminlinkissue791445 messages
2007-08-23 14:16:14admincreate