]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expects
authorVictor Stinner <victor.stinner@haypocalc.com>
Sat, 16 Oct 2010 13:14:10 +0000 (13:14 +0000)
committerVictor Stinner <victor.stinner@haypocalc.com>
Sat, 16 Oct 2010 13:14:10 +0000 (13:14 +0000)
commit4c7c8c30235e42c47500b91549c2b6154b61f883
tree649a94a99ea257c19a3e5ba17fc05a8044459243
parent5a7913eb3bf390a2f3fd28116fc789bf2c7e4b64
Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expects
filenames encoded to the filesystem encoding with surrogateescape error handler
(to support undecodable bytes), instead of UTF-8 in strict mode.
Misc/NEWS
Parser/tokenizer.h
Python/ast.c
Python/bltinmodule.c
Python/compile.c
Python/pythonrun.c
Python/traceback.c