[Python-Dev] [Python-checkins] r88119 - in python/branches/py3k/Doc: library/inspect.rst whatsnew/3.2.rst

Victor Stinner victor.stinner at haypocalc.com
Thu Jan 20 13:06:15 CET 2011


Le jeudi 20 janvier 2011 à 05:03 +0100, raymond.hettinger a écrit :
>  * Python's import mechanism can now load modules installed in directories with
> -  non-ASCII characters in the path name.
> +  non-ASCII characters in the path name:
> +
> +  >>> import møøse.bites
>  
>    (Required extensive work by Victor Stinner in :issue:`9425`.)

Ooops, it is not the good example :-) In this example, møøse is not a
module path, but a module name... And Python 3.2 doesn't support
correctly non-ASCII module names on all operating systems yet (see
"[Python-Dev] Import and unicode: part two" thread :-)).

#9425 only concerns sys.path (eg.
sys.path.append('/home/møøse/modules/')).

Victor 



More information about the Python-Dev mailing list