diff options
| author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-09 11:46:19 +0100 |
|---|---|---|
| committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-09 11:46:19 +0100 |
| commit | 9bf379e9fbbd669cfbf61adc6b833a9bbe023238 (patch) | |
| tree | d451a0bffa3afc9367090354a54eda1dd169bd03 /Tools/i18n/msgfmt.py | |
| parent | 8b6b176b33ee8c3074b463a4628faa84dea0ebed (diff) | |
| download | cpython-git-9bf379e9fbbd669cfbf61adc6b833a9bbe023238.tar.gz | |
#13301: use ast.literal_eval() instead of eval() in Tools/i18n/msgfmt.py. Patch by Serhiy Storchaka.
Diffstat (limited to 'Tools/i18n/msgfmt.py')
| -rwxr-xr-x | Tools/i18n/msgfmt.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/i18n/msgfmt.py b/Tools/i18n/msgfmt.py index a5544424e2..7b3a81ff93 100755 --- a/Tools/i18n/msgfmt.py +++ b/Tools/i18n/msgfmt.py @@ -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: |
