]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Recorded merge of revisions 85569-85570 via svnmerge from
authorVictor Stinner <victor.stinner@haypocalc.com>
Tue, 19 Oct 2010 01:22:07 +0000 (01:22 +0000)
committerVictor Stinner <victor.stinner@haypocalc.com>
Tue, 19 Oct 2010 01:22:07 +0000 (01:22 +0000)
commit15244f7b126b2eab94a0755a82c431a4933330f4
tree358c60d119546f862a90692fd71feaa9c774d78c
parent089144e511ca4b388ce8b29ecf2965a8215ff238
Recorded merge of revisions 85569-85570 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r85569 | victor.stinner | 2010-10-16 15:14:10 +0200 (sam., 16 oct. 2010) | 4 lines

  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.
........
  r85570 | victor.stinner | 2010-10-16 15:42:53 +0200 (sam., 16 oct. 2010) | 4 lines

  Fix ast_error_finish() and err_input(): filename can be NULL

  Fix my previous commit (r85569).
........
Misc/NEWS
Parser/tokenizer.h
Python/ast.c
Python/bltinmodule.c
Python/compile.c
Python/pythonrun.c
Python/traceback.c