Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
55c6cc40
Kaydet (Commit)
55c6cc40
authored
Ara 23, 2013
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #20033: makelocalealias.py now works with non-ASCII locales and produces
the same result as in 2.x.
üst
a4d170d9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
makelocalealias.py
Tools/i18n/makelocalealias.py
+5
-5
No files found.
Tools/i18n/makelocalealias.py
Dosyayı görüntüle @
55c6cc40
...
...
@@ -13,8 +13,8 @@ LOCALE_ALIAS = '/usr/share/X11/locale/locale.alias'
def
parse
(
filename
):
f
=
open
(
filename
)
lines
=
f
.
read
()
.
splitlines
(
)
with
open
(
filename
,
encoding
=
'latin1'
)
as
f
:
lines
=
list
(
f
)
data
=
{}
for
line
in
lines
:
line
=
line
.
strip
()
...
...
@@ -47,15 +47,15 @@ def parse(filename):
def
pprint
(
data
):
items
=
sorted
(
data
.
items
())
for
k
,
v
in
items
:
print
(
'
%-40
s
%
r,'
%
(
'
%
r
:'
%
k
,
v
))
print
(
'
%-40
s
%
a,'
%
(
'
%
a
:'
%
k
,
v
))
def
print_differences
(
data
,
olddata
):
items
=
sorted
(
olddata
.
items
())
for
k
,
v
in
items
:
if
k
not
in
data
:
print
(
'# removed
%
r
'
%
k
)
print
(
'# removed
%
a
'
%
k
)
elif
olddata
[
k
]
!=
data
[
k
]:
print
(
'# updated
%
r ->
%
r to
%
r
'
%
\
print
(
'# updated
%
a ->
%
a to
%
a
'
%
\
(
k
,
olddata
[
k
],
data
[
k
]))
# Additions are not mentioned
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment