[issue1170] shlex have problems with parsing unicode

2011-07-17 Thread Santiago Romero
Santiago Romero added the comment: > It would be good to hear a strong argument from > the user that how did he end up passing > unicode to shlex.split? It is for parsing command > line args for programs and personally have not > seen those cases. I'm from Spain: I perso

[issue1170] shlex have problems with parsing unicode

2011-07-13 Thread Santiago Romero
Santiago Romero added the comment: I think I'm suffering the same problem in some small programs that use shlex: >>> import shlex >>> text = "python and shlex" >>> shlex.split(text) ['python', 'and', 'shlex'] >>&g