diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-10-17 19:03:16 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-10-17 19:03:16 (GMT) |
commit | 15a71cdad2537b9ffcfe7216ea9af61d7888db98 (patch) | |
tree | e5da97ff783800b3d8fbc7393f6bdc8d58f0abc8 /Python/errors.c | |
parent | 5b5d8d58c76cac7c1e3bdc8004abad137ee8d3ce (diff) | |
download | cpython-15a71cdad2537b9ffcfe7216ea9af61d7888db98.zip cpython-15a71cdad2537b9ffcfe7216ea9af61d7888db98.tar.gz cpython-15a71cdad2537b9ffcfe7216ea9af61d7888db98.tar.bz2 |
PyErr_SyntaxLocationEx() uses PyUnicode_DecodeFSDefault(), instead of
PyUnicode_FromString(), to decode the filename.
Diffstat (limited to 'Python/errors.c')
-rw-r--r-- | Python/errors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/errors.c b/Python/errors.c index a24095d..e3486b9 100644 --- a/Python/errors.c +++ b/Python/errors.c @@ -819,7 +819,7 @@ PyErr_SyntaxLocationEx(const char *filename, int lineno, int col_offset) } } if (filename != NULL) { - tmp = PyUnicode_FromString(filename); + tmp = PyUnicode_DecodeFSDefault(filename); if (tmp == NULL) PyErr_Clear(); else { |