]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Issue #3080: Use Unicode to import source and compiled modules
authorVictor Stinner <victor.stinner@haypocalc.com>
Sat, 19 Mar 2011 23:41:24 +0000 (00:41 +0100)
committerVictor Stinner <victor.stinner@haypocalc.com>
Sat, 19 Mar 2011 23:41:24 +0000 (00:41 +0100)
commit2f42ae53aa54ad5452a188077356fd9e89c6da72
treeb555809c3c1293d9589afb9285338fe75d323953
parentc9abda0c0493f919445d423448e80ff2a40dd545
Issue #3080: Use Unicode to import source and compiled modules

 * Use Unicode for module name and path in the following functions:

   * get_file()
   * load_source_module(), parse_source_module()
   * make_compiled_pathname(), check_compiled_module(),
     read_compiled_module(), load_compiled_module(), write_compiled_module(),
     update_compiled_module()

 * On Windows, use CreateDirectoryW() instead of mkdir()
 * update_compiled_module() cannot fail anymore
Python/import.c