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
bded4d3b
Kaydet (Commit)
bded4d3b
authored
Tem 17, 2008
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make gettext Unicode interface consistent and clean up the docs.
üst
6a9475f6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
20 deletions
+10
-20
gettext.rst
Doc/library/gettext.rst
+0
-0
gettext.py
Lib/gettext.py
+8
-18
NEWS
Misc/NEWS
+2
-2
No files found.
Doc/library/gettext.rst
Dosyayı görüntüle @
bded4d3b
This diff is collapsed.
Click to expand it.
Lib/gettext.py
Dosyayı görüntüle @
bded4d3b
...
...
@@ -304,26 +304,16 @@ class GNUTranslations(NullTranslations):
# cause no problems since us-ascii should always be a subset of
# the charset encoding. We may want to fall back to 8-bit msgids
# if the Unicode conversion fails.
charset
=
self
.
_charset
or
'ascii'
if
b
'
\x00
'
in
msg
:
# Plural forms
msgid1
,
msgid2
=
msg
.
split
(
b
'
\x00
'
)
tmsg
=
tmsg
.
split
(
b
'
\x00
'
)
if
self
.
_charset
:
msgid1
=
str
(
msgid1
,
self
.
_charset
)
tmsg
=
[
str
(
x
,
self
.
_charset
)
for
x
in
tmsg
]
else
:
msgid1
=
str
(
msgid1
)
tmsg
=
[
str
(
x
)
for
x
in
tmsg
]
for
i
in
range
(
len
(
tmsg
)):
catalog
[(
msgid1
,
i
)]
=
tmsg
[
i
]
msgid1
=
str
(
msgid1
,
charset
)
for
i
,
x
in
enumerate
(
tmsg
):
catalog
[(
msgid1
,
i
)]
=
str
(
x
,
charset
)
else
:
if
self
.
_charset
:
msg
=
str
(
msg
,
self
.
_charset
)
tmsg
=
str
(
tmsg
,
self
.
_charset
)
else
:
msg
=
str
(
msg
)
tmsg
=
str
(
tmsg
)
catalog
[
msg
]
=
tmsg
catalog
[
str
(
msg
,
charset
)]
=
str
(
tmsg
,
charset
)
# advance to next entry in the seek tables
masteridx
+=
8
transidx
+=
8
...
...
@@ -359,7 +349,7 @@ class GNUTranslations(NullTranslations):
if
tmsg
is
missing
:
if
self
.
_fallback
:
return
self
.
_fallback
.
gettext
(
message
)
return
str
(
message
)
return
message
return
tmsg
def
ngettext
(
self
,
msgid1
,
msgid2
,
n
):
...
...
@@ -369,9 +359,9 @@ class GNUTranslations(NullTranslations):
if
self
.
_fallback
:
return
self
.
_fallback
.
ngettext
(
msgid1
,
msgid2
,
n
)
if
n
==
1
:
tmsg
=
str
(
msgid1
)
tmsg
=
msgid1
else
:
tmsg
=
str
(
msgid2
)
tmsg
=
msgid2
return
tmsg
...
...
Misc/NEWS
Dosyayı görüntüle @
bded4d3b
...
...
@@ -47,8 +47,8 @@ Library
code of every single module of the standard library, including invalid files
used in the test suite.
-
All the u* variant functions and methods in gettext have been renamed to their
none u* siblings
.
-
The gettext library now consistently uses Unicode strings for message ids
and message strings, and ``ugettext()`` and the like don't exist anymore
.
- The traceback module has been expanded to handle chained exceptions.
...
...
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