This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients pitrou
Date 2008-08-27.19:17:14
SpamBayes Score 0.0015683414
Marked as misclassified No
Message-id <1219864637.3.0.443278778908.issue3705@psf.upfronthosting.co.za>
In-reply-to
Content
Here is a patch which works under Linux. Under Windows it doesn't choke
when converting arguments anymore, but it fails later in the process (in
the parser for '-c', in the importing logic for '-m').

Here is an example:

$ ./python -c "print(ord('ሀ'))"
4608
$ cat > ሀ.py
print(__file__)

$ ./python -m ሀ
/home/antoine/py3k/mbstowcs/ሀ.py
$ ./python ሀ.py 
ሀ.py
History
Date User Action Args
2008-08-27 19:17:17pitrousetrecipients: + pitrou
2008-08-27 19:17:17pitrousetmessageid: <1219864637.3.0.443278778908.issue3705@psf.upfronthosting.co.za>
2008-08-27 19:17:16pitroulinkissue3705 messages
2008-08-27 19:17:16pitroucreate