Issue1206

classification
Title: test_calendar fails on non english platforms
Type: behaviour Severity: minor
Components: Library Versions: Jython 2.5
Milestone:
process
Status: closed Resolution: duplicate
Dependencies: Superseder:
Assigned To: Nosy List: fwierzbicki, otmarhumbel, pjenvey, ruivaldo, zyasoft
Priority: low Keywords:

Created on 2008-12-17.04:26:30 by ruivaldo, last changed 2015-03-03.23:41:15 by zyasoft.

Messages
msg3941 (view) Author: ruivaldo (ruivaldo) Date: 2008-12-17.04:26:29
The test_calendar fails in a Portuguese Windows Install. To solve it i 
just added in top of the tests, the code:

# Make tests:test_output_htmlcalendar and test_output_textcalendar
# pass on no english locales.
import java.util.Locale
java.util.Locale.setDefault( java.util.Locale.US )

Of this solution is accepted i will make a patch.
msg4898 (view) Author: Philip Jenvey (pjenvey) Date: 2009-07-12.01:04:35
What errors are produced by the test run? It's not clear to me how the 
calendar module actually utilizes the Locale module

cc'ing Oti because he has a windows machine on a different locale
msg4909 (view) Author: Oti Humbel (otmarhumbel) Date: 2009-07-15.22:05:25
Yes, the test also fails on my German Windows.
I'll have the chance to take a closer look in about 2 weeks.
msg7701 (view) Author: Frank Wierzbicki (fwierzbicki) Date: 2013-02-19.21:24:00
This *may* be fixed, at least in 2.7.
msg8743 (view) Author: Jim Baker (zyasoft) Date: 2014-06-19.07:51:38
Can we retest on one of these platforms?
msg9502 (view) Author: Jim Baker (zyasoft) Date: 2015-02-08.06:08:46
Likely this is a duplicate of http://bugs.jython.org/issue1708, now closed
msg9580 (view) Author: Jim Baker (zyasoft) Date: 2015-03-03.23:41:15
Closing out as a duplicate
History
Date User Action Args
2015-03-03 23:41:15zyasoftsetstatus: open -> closed
resolution: remind -> duplicate
messages: + msg9580
2015-02-08 06:08:46zyasoftsetmessages: + msg9502
2014-06-19 07:51:38zyasoftsetnosy: + zyasoft
messages: + msg8743
2013-02-19 21:24:01fwierzbickisetresolution: remind
messages: + msg7701
nosy: + fwierzbicki
versions: + Jython 2.5, - 2.5b0
2009-07-15 22:05:25otmarhumbelsetmessages: + msg4909
2009-07-12 01:04:35pjenveysetnosy: + pjenvey, otmarhumbel
messages: + msg4898
2009-03-14 03:09:07fwierzbickisetpriority: low
2008-12-17 04:26:30ruivaldocreate