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 mpg
Recipients mpg
Date 2012-09-28.10:36:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1348828586.78.0.854198311775.issue16080@psf.upfronthosting.co.za>
In-reply-to
Content
Some tests, namely test_email, test_locale and test_mailbox, normally pass, but fail if both of the following conditions are met:
- the local is fr_FR (or probably any other non-C locale)
- test_decimal is run before them

Steps to repoduce:

% LC_ALL=fr_FR ./python -m test test_email test_locale test_mailbox test_decimal
[1/4] test_email
[2/4] test_locale
[3/4] test_mailbox
[4/4] test_decimal
All 4 tests OK.

% LC_ALL=C ./python -m test test_decimal test_email test_locale test_mailbox              
[1/4] test_decimal
[2/4] test_email
[3/4] test_locale
[4/4] test_mailbox
All 4 tests OK.

% LC_ALL=fr_FR ./python -m test test_decimal test_email test_locale test_mailbox                                                       
[1/4] test_decimal
[2/4] test_email
Warning -- sys.path was modified by test_email
test test_email failed -- Traceback (most recent call last):
  File "/home/mpg/src/cpython/Lib/test/test_email/test_email.py", line 2716, in test_formatdate_usegmt
    time.strftime('%a, %d %b %Y %H:%M:%S -0000', time.gmtime(now)))
AssertionError: 'Fri, 28 Sep 2012 10:05:26 -0000' != 'ven., 28 sept. 2012 10:05:26 -0000'
- Fri, 28 Sep 2012 10:05:26 -0000
? ^^^     ^
+ ven., 28 sept. 2012 10:05:26 -0000
? ^^^^     ^  ++


[3/4/1] test_locale
test test_locale failed -- Traceback (most recent call last):
  File "/home/mpg/src/cpython/Lib/test/test_locale.py", line 246, in test_percent_escape
    self.assertEqual(locale.format_string('%f%%', 1.0), '%f%%' % 1.0)
AssertionError: '1,000000%' != '1.000000%'
- 1,000000%
?  ^
+ 1.000000%
?  ^


[4/4/2] test_mailbox
test test_mailbox failed -- Traceback (most recent call last):
  File "/home/mpg/src/cpython/Lib/test/test_mailbox.py", line 1754, in test_mboxmmdf_to_maildir
    self.assertEqual(msg.get_date(), 0.0)
AssertionError: 1348826768.3964105 != 0.0

1 test OK.
3 tests failed:
    test_email test_locale test_mailbox
History
Date User Action Args
2012-09-28 10:36:26mpgsetrecipients: + mpg
2012-09-28 10:36:26mpgsetmessageid: <1348828586.78.0.854198311775.issue16080@psf.upfronthosting.co.za>
2012-09-28 10:36:26mpglinkissue16080 messages
2012-09-28 10:36:25mpgcreate