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 David.Edelsohn
Recipients David.Edelsohn, serhiy.storchaka, vstinner
Date 2014-02-19.01:50:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1392774646.6.0.441588035138.issue19748@psf.upfronthosting.co.za>
In-reply-to
Content
With the patch, the results are:

ERROR: test_ctime (test.test_time.TimeTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/dje/src/cpython/Lib/test/test_time.py", line 239, in test_ctime
    self.assertEqual(time.ctime(testval)[20:], str(year))
OverflowError: ctime() timestamp argument out of range

======================================================================
FAIL: test_mktime_error (test.test_time.TimeTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/dje/src/cpython/Lib/test/test_time.py", line 371, in test_mktime_error
    self.assertEqual(time.strftime('%Z', tt), tzname)
AssertionError: 'LMT' != 'PST'
- LMT
+ PST

which is what I would expect based on the patch and the new AIX-specific error message. What did you expect?
History
Date User Action Args
2014-02-19 01:50:46David.Edelsohnsetrecipients: + David.Edelsohn, vstinner, serhiy.storchaka
2014-02-19 01:50:46David.Edelsohnsetmessageid: <1392774646.6.0.441588035138.issue19748@psf.upfronthosting.co.za>
2014-02-19 01:50:46David.Edelsohnlinkissue19748 messages
2014-02-19 01:50:45David.Edelsohncreate