Revert "7638: Better support for locales falling back into U.S. English at startup"
This reverts commit 021426fc8d
.
This commit is contained in:
parent
021426fc8d
commit
e1e18cb6f7
@ -141,92 +141,6 @@ try:
|
||||
except:
|
||||
import time
|
||||
|
||||
if codeset == 'ascii':
|
||||
month_to_int = {
|
||||
time.strftime('%B',(1,1,1,1,1,1,1,1,1)).lower() : 1,
|
||||
time.strftime('%b',(1,1,1,1,1,1,1,1,1)).lower() : 1,
|
||||
time.strftime('%B',(1,2,1,1,1,1,1,1,1)).lower() : 2,
|
||||
time.strftime('%b',(1,2,1,1,1,1,1,1,1)).lower() : 2,
|
||||
time.strftime('%B',(1,3,1,1,1,1,1,1,1)).lower() : 3,
|
||||
time.strftime('%b',(1,3,1,1,1,1,1,1,1)).lower() : 3,
|
||||
time.strftime('%B',(1,4,1,1,1,1,1,1,1)).lower() : 4,
|
||||
time.strftime('%b',(1,4,1,1,1,1,1,1,1)).lower() : 4,
|
||||
time.strftime('%B',(1,5,1,1,1,1,1,1,1)).lower() : 5,
|
||||
time.strftime('%b',(1,5,1,1,1,1,1,1,1)).lower() : 5,
|
||||
time.strftime('%B',(1,6,1,1,1,1,1,1,1)).lower() : 6,
|
||||
time.strftime('%b',(1,6,1,1,1,1,1,1,1)).lower() : 6,
|
||||
time.strftime('%B',(1,7,1,1,1,1,1,1,1)).lower() : 7,
|
||||
time.strftime('%b',(1,7,1,1,1,1,1,1,1)).lower() : 7,
|
||||
time.strftime('%B',(1,8,1,1,1,1,1,1,1)).lower() : 8,
|
||||
time.strftime('%b',(1,8,1,1,1,1,1,1,1)).lower() : 8,
|
||||
time.strftime('%B',(1,9,1,1,1,1,1,1,1)).lower() : 9,
|
||||
time.strftime('%b',(1,9,1,1,1,1,1,1,1)).lower() : 9,
|
||||
time.strftime('%B',(1,10,1,1,1,1,1,1,1)).lower() : 10,
|
||||
time.strftime('%b',(1,10,1,1,1,1,1,1,1)).lower() : 10,
|
||||
time.strftime('%B',(1,11,1,1,1,1,1,1,1)).lower() : 11,
|
||||
time.strftime('%b',(1,11,1,1,1,1,1,1,1)).lower() : 11,
|
||||
time.strftime('%B',(1,12,1,1,1,1,1,1,1)).lower() : 12,
|
||||
time.strftime('%b',(1,12,1,1,1,1,1,1,1)).lower() : 12,
|
||||
}
|
||||
|
||||
long_months = (
|
||||
"",
|
||||
time.strftime('%B',(1,1,1,1,1,1,1,1,1)),
|
||||
time.strftime('%B',(1,2,1,1,1,1,1,1,1)),
|
||||
time.strftime('%B',(1,3,1,1,1,1,1,1,1)),
|
||||
time.strftime('%B',(1,4,1,1,1,1,1,1,1)),
|
||||
time.strftime('%B',(1,5,1,1,1,1,1,1,1)),
|
||||
time.strftime('%B',(1,6,1,1,1,1,1,1,1)),
|
||||
time.strftime('%B',(1,7,1,1,1,1,1,1,1)),
|
||||
time.strftime('%B',(1,8,1,1,1,1,1,1,1)),
|
||||
time.strftime('%B',(1,9,1,1,1,1,1,1,1)),
|
||||
time.strftime('%B',(1,10,1,1,1,1,1,1,1)),
|
||||
time.strftime('%B',(1,11,1,1,1,1,1,1,1)),
|
||||
time.strftime('%B',(1,12,1,1,1,1,1,1,1)),
|
||||
)
|
||||
|
||||
short_months = (
|
||||
"",
|
||||
time.strftime('%b',(1,1,1,1,1,1,1,1,1)),
|
||||
time.strftime('%b',(1,2,1,1,1,1,1,1,1)),
|
||||
time.strftime('%b',(1,3,1,1,1,1,1,1,1)),
|
||||
time.strftime('%b',(1,4,1,1,1,1,1,1,1)),
|
||||
time.strftime('%b',(1,5,1,1,1,1,1,1,1)),
|
||||
time.strftime('%b',(1,6,1,1,1,1,1,1,1)),
|
||||
time.strftime('%b',(1,7,1,1,1,1,1,1,1)),
|
||||
time.strftime('%b',(1,8,1,1,1,1,1,1,1)),
|
||||
time.strftime('%b',(1,9,1,1,1,1,1,1,1)),
|
||||
time.strftime('%b',(1,10,1,1,1,1,1,1,1)),
|
||||
time.strftime('%b',(1,11,1,1,1,1,1,1,1)),
|
||||
time.strftime('%b',(1,12,1,1,1,1,1,1,1)),
|
||||
)
|
||||
|
||||
long_days = (
|
||||
"",
|
||||
time.strftime('%A',(1,1,1,1,1,1,6,1,1)), # Sunday
|
||||
time.strftime('%A',(1,1,1,1,1,1,0,1,1)), # Monday
|
||||
time.strftime('%A',(1,1,1,1,1,1,1,1,1)), # Tuesday
|
||||
time.strftime('%A',(1,1,1,1,1,1,2,1,1)), # Wednesday
|
||||
time.strftime('%A',(1,1,1,1,1,1,3,1,1)), # Thursday
|
||||
time.strftime('%A',(1,1,1,1,1,1,4,1,1)), # Friday
|
||||
time.strftime('%A',(1,1,1,1,1,1,5,1,1)), # Saturday
|
||||
)
|
||||
|
||||
short_days = (
|
||||
"",
|
||||
time.strftime('%a',(1,1,1,1,1,1,6,1,1)), # Sunday
|
||||
time.strftime('%a',(1,1,1,1,1,1,0,1,1)), # Monday
|
||||
time.strftime('%a',(1,1,1,1,1,1,1,1,1)), # Tuesday
|
||||
time.strftime('%a',(1,1,1,1,1,1,2,1,1)), # Wednesday
|
||||
time.strftime('%a',(1,1,1,1,1,1,3,1,1)), # Thursday
|
||||
time.strftime('%a',(1,1,1,1,1,1,4,1,1)), # Friday
|
||||
time.strftime('%a',(1,1,1,1,1,1,5,1,1)), # Saturday
|
||||
)
|
||||
|
||||
else:
|
||||
|
||||
# localized names
|
||||
|
||||
month_to_int = {
|
||||
to_uni(time.strftime('%B',(1,1,1,1,1,1,1,1,1)), codeset).lower() : 1,
|
||||
to_uni(time.strftime('%b',(1,1,1,1,1,1,1,1,1)), codeset).lower() : 1,
|
||||
@ -295,7 +209,6 @@ except:
|
||||
# number. tm_wday => range [0,6], Monday is 0
|
||||
# Note. Only the seventh tuple entry matters. The others are
|
||||
# just a dummy.
|
||||
|
||||
long_days = (
|
||||
"",
|
||||
to_uni(time.strftime('%A',(1,1,1,1,1,1,6,1,1)), codeset), # Sunday
|
||||
|
Loading…
Reference in New Issue
Block a user