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
6108bf5e
Kaydet (Commit)
6108bf5e
authored
Eki 04, 2010
tarafından
Éric Araujo
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix interaction of custom translation classes and caching (#9042)
üst
70176169
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
35 additions
and
1 deletion
+35
-1
gettext.py
Lib/gettext.py
+1
-1
test_gettext.py
Lib/test/test_gettext.py
+31
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/gettext.py
Dosyayı görüntüle @
6108bf5e
...
...
@@ -419,7 +419,7 @@ def translation(domain, localedir=None, languages=None,
# once.
result
=
None
for
mofile
in
mofiles
:
key
=
os
.
path
.
abspath
(
mofile
)
key
=
(
class_
,
os
.
path
.
abspath
(
mofile
)
)
t
=
_translations
.
get
(
key
)
if
t
is
None
:
with
open
(
mofile
,
'rb'
)
as
fp
:
...
...
Lib/test/test_gettext.py
Dosyayı görüntüle @
6108bf5e
...
...
@@ -335,6 +335,37 @@ class WeirdMetadataTest(GettextBaseTest):
'John Doe <jdoe@example.com>
\n
Jane Foobar <jfoobar@example.com>'
)
class
DummyGNUTranslations
(
gettext
.
GNUTranslations
):
def
foo
(
self
):
return
'foo'
class
GettextCacheTestCase
(
GettextBaseTest
):
def
test_cache
(
self
):
self
.
localedir
=
os
.
curdir
self
.
mofile
=
MOFILE
self
.
assertEqual
(
len
(
gettext
.
_translations
),
0
)
t
=
gettext
.
translation
(
'gettext'
,
self
.
localedir
)
self
.
assertEqual
(
len
(
gettext
.
_translations
),
1
)
t
=
gettext
.
translation
(
'gettext'
,
self
.
localedir
,
class_
=
DummyGNUTranslations
)
self
.
assertEqual
(
len
(
gettext
.
_translations
),
2
)
self
.
assertEqual
(
t
.
__class__
,
DummyGNUTranslations
)
# Calling it again doesn't add to the cache
t
=
gettext
.
translation
(
'gettext'
,
self
.
localedir
,
class_
=
DummyGNUTranslations
)
self
.
assertEqual
(
len
(
gettext
.
_translations
),
2
)
self
.
assertEqual
(
t
.
__class__
,
DummyGNUTranslations
)
def
test_main
():
support
.
run_unittest
(
__name__
)
...
...
Misc/NEWS
Dosyayı görüntüle @
6108bf5e
...
...
@@ -88,6 +88,9 @@ Core and Builtins
Library
-------
- Issue #9042: Fix interaction of custom translation classes and caching in
gettext.
- Issue 6706: asyncore.dispatcher now provides a handle_accepted() method
returning a (sock, addr) pair which is called when a connection has been
established with a new remote endpoint. This is supposed to be used as a
...
...
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