[issue16218] Python launcher does not support non ascii characters

Andrew Svetlov report at bugs.python.org
Thu Nov 1 17:37:00 CET 2012


Andrew Svetlov added the comment:

Vinay, it's processed in 
PyObject_CallFunction(loader_type, "sN", "__main__", filename_obj)
Please note "sN" format istead "sO".
"N" means PyObject* is passed but unlike "sO" that object is not increfed.

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue16218>
_______________________________________


More information about the Python-bugs-list mailing list