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
956c6c2d
Kaydet (Commit)
956c6c2d
authored
Kas 09, 2012
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
#13301: merge with 3.2.
üst
a3ad8a0c
9bf379e9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
NEWS
Misc/NEWS
+6
-0
msgfmt.py
Tools/i18n/msgfmt.py
+3
-3
No files found.
Misc/NEWS
Dosyayı görüntüle @
956c6c2d
...
...
@@ -227,6 +227,12 @@ Build
-
Issue
#
15819
:
Make
sure
we
can
build
Python
out
-
of
-
tree
from
a
read
-
only
source
directory
.
(
Somewhat
related
to
issue
#
9860.
)
Tools
/
Demos
-----------
-
Issue
#
13301
:
use
ast
.
literal_eval
()
instead
of
eval
()
in
Tools
/
i18n
/
msgfmt
.
py
Patch
by
Serhiy
Storchaka
.
Documentation
-------------
...
...
Tools/i18n/msgfmt.py
Dosyayı görüntüle @
956c6c2d
...
...
@@ -24,8 +24,9 @@ Options:
Display version information and exit.
"""
import
sys
import
os
import
sys
import
ast
import
getopt
import
struct
import
array
...
...
@@ -180,8 +181,7 @@ def make(filename, outfile):
l
=
l
.
strip
()
if
not
l
:
continue
# XXX: Does this always follow Python escape semantics?
l
=
eval
(
l
)
l
=
ast
.
literal_eval
(
l
)
if
section
==
ID
:
msgid
+=
l
.
encode
(
encoding
)
elif
section
==
STR
:
...
...
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