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
9a2d9d7f
Kaydet (Commit)
9a2d9d7f
authored
Agu 31, 2000
tarafından
Barry Warsaw
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
GNUTranslations._parse(): Fix portability problems on 64-bit machines
by masking all unsigned integers with 0xffffffff.
üst
0c4fdbae
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
5 deletions
+14
-5
gettext.py
Lib/gettext.py
+14
-5
No files found.
Lib/gettext.py
Dosyayı görüntüle @
9a2d9d7f
...
...
@@ -129,14 +129,18 @@ class GNUTranslations(NullTranslations):
def
_parse
(
self
,
fp
):
"""Override this method to support alternative .mo formats."""
# We need to & all 32 bit unsigned integers with 0xffffff for
# portability to 64 bit machines.
MASK
=
0xffffffff
unpack
=
struct
.
unpack
filename
=
getattr
(
fp
,
'name'
,
''
)
# Parse the .mo file header, which consists of 5 little endian 32
# bit words.
self
.
_catalog
=
catalog
=
{}
buf
=
fp
.
read
()
buflen
=
len
(
buf
)
# Are we big endian or little endian?
magic
=
unpack
(
'<i'
,
buf
[:
4
])[
0
]
magic
=
unpack
(
'<i'
,
buf
[:
4
])[
0
]
&
MASK
if
magic
==
self
.
LE_MAGIC
:
version
,
msgcount
,
masteridx
,
transidx
=
unpack
(
'<4i'
,
buf
[
4
:
20
])
ii
=
'<ii'
...
...
@@ -145,15 +149,20 @@ class GNUTranslations(NullTranslations):
ii
=
'>ii'
else
:
raise
IOError
(
0
,
'Bad magic number'
,
filename
)
#
# more unsigned ints
msgcount
&=
MASK
masteridx
&=
MASK
transidx
&=
MASK
# Now put all messages from the .mo file buffer into the catalog
# dictionary.
for
i
in
xrange
(
0
,
msgcount
):
mlen
,
moff
=
unpack
(
ii
,
buf
[
masteridx
:
masteridx
+
8
])
mend
=
moff
+
mlen
moff
&=
MASK
mend
=
moff
+
(
mlen
&
MASK
)
tlen
,
toff
=
unpack
(
ii
,
buf
[
transidx
:
transidx
+
8
])
tend
=
toff
+
tlen
if
mend
<
len
(
buf
)
and
tend
<
len
(
buf
):
toff
&=
MASK
tend
=
toff
+
(
tlen
&
MASK
)
if
mend
<
buflen
and
tend
<
buflen
:
tmsg
=
buf
[
toff
:
tend
]
catalog
[
buf
[
moff
:
mend
]]
=
tmsg
else
:
...
...
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