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
14c7bc2a
Kaydet (Commit)
14c7bc2a
authored
May 10, 2009
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
close file explicitly
üst
ceea163e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
gettext.py
Lib/gettext.py
+2
-2
No files found.
Lib/gettext.py
Dosyayı görüntüle @
14c7bc2a
...
...
@@ -467,7 +467,6 @@ def translation(domain, localedir=None, languages=None,
if
fallback
:
return
NullTranslations
()
raise
IOError
(
ENOENT
,
'No translation file found for domain'
,
domain
)
# TBD: do we need to worry about the file pointer getting collected?
# Avoid opening, reading, and parsing the .mo file after it's been done
# once.
result
=
None
...
...
@@ -475,7 +474,8 @@ def translation(domain, localedir=None, languages=None,
key
=
os
.
path
.
abspath
(
mofile
)
t
=
_translations
.
get
(
key
)
if
t
is
None
:
t
=
_translations
.
setdefault
(
key
,
class_
(
open
(
mofile
,
'rb'
)))
with
open
(
mofile
,
'rb'
)
as
fp
:
t
=
_translations
.
setdefault
(
key
,
class_
(
fp
))
# Copy the translation object to allow setting fallbacks and
# output charset. All other instance data is shared with the
# cached object.
...
...
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