Searching the Bug List

William Trenker wtrenker at shaw.ca
Thu Aug 14 12:05:54 EDT 2003


I decided to run the Python 2.3 test suite on my Linux system.  I noticed that test_time failed so I ran the test individually and got the traceback listed below.  I see in a search on the Python site that this was reported in May 2003.  So I wondered if this was supposed to be fixed for the 2.3 release.

Of course I don't want to report bugs that are already reported and still open so I tried to search the bug list.  I was hoping to search on the string "test_time" but on the Sourceforge bug page but there doesn't seem to be a place to type in a general search string.  Is the bug list available as a download that can be searched?

Thanks,
Bill

/src/Python-2.3/Lib/test# python test_time.py
test_asctime (__main__.TimeTestCase) ... ok
test_clock (__main__.TimeTestCase) ... ok
test_conversions (__main__.TimeTestCase) ... ok
test_data_attributes (__main__.TimeTestCase) ... ok
test_sleep (__main__.TimeTestCase) ... ok
test_strftime (__main__.TimeTestCase) ... ok
test_strptime (__main__.TimeTestCase) ... ok
test_tzset (__main__.TimeTestCase) ... FAIL

======================================================================
FAIL: test_tzset (__main__.TimeTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "test_time.py", line 107, in test_tzset
    self.failUnless(time.tzname[1] == 'AEDT', str(time.tzname[1]))
  File "/usr/local/lib/python2.3/unittest.py", line 268, in failUnless
    if not expr: raise self.failureException, msg
AssertionError: AEST

----------------------------------------------------------------------
Ran 8 tests in 2.357s

FAILED (failures=1)
Traceback (most recent call last):
  File "test_time.py", line 129, in ?
    test_main()
  File "test_time.py", line 125, in test_main
    test_support.run_unittest(TimeTestCase)
  File "/usr/local/lib/python2.3/test/test_support.py", line 262, in run_unittest
    run_suite(suite, testclass)
  File "/usr/local/lib/python2.3/test/test_support.py", line 247, in run_suite
    raise TestFailed(err)
test.test_support.TestFailed: Traceback (most recent call last):
  File "test_time.py", line 107, in test_tzset
    self.failUnless(time.tzname[1] == 'AEDT', str(time.tzname[1]))
  File "/usr/local/lib/python2.3/unittest.py", line 268, in failUnless
    if not expr: raise self.failureException, msg
AssertionError: AEST







More information about the Python-list mailing list