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: Re: Bugs item #765456
Type: Stage:
Components: Build Versions: Python 2.3
process
Status: closed Resolution: duplicate
Dependencies: Superseder:
Assigned To: Nosy List: rhettinger, sleard1, tzot
Priority: release blocker Keywords:

Created on 2003-08-19 19:18 by sleard1, last changed 2022-04-10 16:10 by admin. This issue is now closed.

Messages (3)
msg17844 - (view) Author: Shawn Leard (sleard1) Date: 2003-08-19 19:18

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




msg17845 - (view) Author: Χρήστος Γεωργίου (Christos Georgiou) (tzot) * Date: 2003-08-20 15:30
Logged In: YES 
user_id=539787

Wouldn't it be more appropriate to annotate 765456 (this 
number reminds me of piano lessons :) than to create a new 
bug report?
msg17846 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2003-08-23 03:43
Logged In: YES 
user_id=80475

Please close this one and re-file the information along with 
the original bug report.
History
Date User Action Args
2022-04-10 16:10:44adminsetgithub: 39091
2003-08-19 19:18:00sleard1create