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
15ea3ac6
Kaydet (Commit)
15ea3ac6
authored
Şub 09, 2013
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #17156: pygettext.py now correctly escapes non-ascii characters.
üst
4234992c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
NEWS
Misc/NEWS
+2
-0
pygettext.py
Tools/i18n/pygettext.py
+5
-6
No files found.
Misc/NEWS
Dosyayı görüntüle @
15ea3ac6
...
...
@@ -202,6 +202,8 @@ Core and Builtins
Library
-------
- Issue #17156: pygettext.py now correctly escapes non-ascii characters.
- Issue #7358: cStringIO.StringIO now supports writing to and reading from
a stream larger than 2 GiB on 64-bit systems.
...
...
Tools/i18n/pygettext.py
Dosyayı görüntüle @
15ea3ac6
...
...
@@ -208,6 +208,7 @@ escapes = []
def
make_escapes
(
pass_iso8859
):
global
escapes
escapes
=
[
chr
(
i
)
for
i
in
range
(
256
)]
if
pass_iso8859
:
# Allow iso-8859 characters to pass through so that e.g. 'msgid
# "Höhe"' would result not result in 'msgid "H\366he"'. Otherwise we
...
...
@@ -215,11 +216,9 @@ def make_escapes(pass_iso8859):
mod
=
128
else
:
mod
=
256
for
i
in
range
(
256
):
if
32
<=
(
i
%
mod
)
<=
126
:
escapes
.
append
(
chr
(
i
))
else
:
escapes
.
append
(
"
\\
%03
o"
%
i
)
for
i
in
range
(
mod
):
if
not
(
32
<=
i
<=
126
):
escapes
[
i
]
=
"
\\
%03
o"
%
i
escapes
[
ord
(
'
\\
'
)]
=
'
\\\\
'
escapes
[
ord
(
'
\t
'
)]
=
'
\\
t'
escapes
[
ord
(
'
\r
'
)]
=
'
\\
r'
...
...
@@ -593,7 +592,7 @@ def main():
fp
.
close
()
# calculate escapes
make_escapes
(
options
.
escape
)
make_escapes
(
not
options
.
escape
)
# calculate all keywords
options
.
keywords
.
extend
(
default_keywords
)
...
...
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