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
afd1e6d2
Unverified
Kaydet (Commit)
afd1e6d2
authored
May 09, 2019
tarafından
Julien Palard
Kaydeden (comit)
GitHub
May 09, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-36239: Skip comments in gettext infos (GH-12255)
üst
88db8bd0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
0 deletions
+17
-0
gettext.py
Lib/gettext.py
+3
-0
test_gettext.py
Lib/test/test_gettext.py
+13
-0
2019-03-09-23-51-27.bpo-36239.BHJ3Ln.rst
...S.d/next/Library/2019-03-09-23-51-27.bpo-36239.BHJ3Ln.rst
+1
-0
No files found.
Lib/gettext.py
Dosyayı görüntüle @
afd1e6d2
...
...
@@ -417,6 +417,9 @@ class GNUTranslations(NullTranslations):
item
=
b_item
.
decode
()
.
strip
()
if
not
item
:
continue
# Skip over comment lines:
if
item
.
startswith
(
'#-#-#-#-#'
)
and
item
.
endswith
(
'#-#-#-#-#'
):
continue
k
=
v
=
None
if
':'
in
item
:
k
,
v
=
item
.
split
(
':'
,
1
)
...
...
Lib/test/test_gettext.py
Dosyayı görüntüle @
afd1e6d2
...
...
@@ -684,6 +684,19 @@ class GNUTranslationParsingTest(GettextBaseTest):
# If this runs cleanly, the bug is fixed.
t
=
gettext
.
GNUTranslations
(
fp
)
def
test_ignore_comments_in_headers_issue36239
(
self
):
"""Checks that comments like:
#-#-#-#-# messages.po (EdX Studio) #-#-#-#-#
are ignored.
"""
with
open
(
MOFILE
,
'wb'
)
as
fp
:
fp
.
write
(
base64
.
decodebytes
(
GNU_MO_DATA_ISSUE_17898
))
with
open
(
MOFILE
,
'rb'
)
as
fp
:
t
=
gettext
.
GNUTranslations
(
fp
)
self
.
assertEqual
(
t
.
info
()[
"plural-forms"
],
"nplurals=2; plural=(n != 1);"
)
class
UnicodeTranslationsTest
(
GettextBaseTest
):
def
setUp
(
self
):
...
...
Misc/NEWS.d/next/Library/2019-03-09-23-51-27.bpo-36239.BHJ3Ln.rst
0 → 100644
Dosyayı görüntüle @
afd1e6d2
Parsing .mo files now ignores comments starting and ending with #-#-#-#-#.
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