]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Fix imp_cache_from_source(): Decode make_compiled_pathname() result from the
authorVictor Stinner <victor.stinner@haypocalc.com>
Fri, 15 Oct 2010 22:46:07 +0000 (22:46 +0000)
committerVictor Stinner <victor.stinner@haypocalc.com>
Fri, 15 Oct 2010 22:46:07 +0000 (22:46 +0000)
commit88bd891e6c536cec0b53d2a52115f44f8498c331
tree7c0c0e68b27c44e0588919e27520724350228174
parent1a5630326f0992db78949a378a32b4979517e200
Fix imp_cache_from_source(): Decode make_compiled_pathname() result from the
filesystem encoding instead of utf-8.

imp_cache_from_source() encodes the input path to filesystem encoding and this
path is passed to make_compiled_pathname().
Python/import.c