[issue13662] os.listdir bug

2011-12-25 Thread Ezio Melotti
Ezio Melotti added the comment: s/U+FFEF/U+FEFF/ See also http://unicode.org/faq/utf_bom.html#bom1 -- ___ Python tracker ___ ___ Pyth

[issue13662] os.listdir bug

2011-12-25 Thread Ezio Melotti
Ezio Melotti added the comment: U+FFEF is a Unicode ZERO WIDTH NO-BREAK SPACE / BYTE ORDER MARK. I'm not sure what is it doing in the file name but this doesn't seem a bug in os.listdir. -- nosy: +ezio.melotti resolution: -> invalid stage: -> committed/rejected status: open -> close

[issue13662] os.listdir bug

2011-12-25 Thread wang
Changes by wang : -- components: +Windows ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue13662] os.listdir bug

2011-12-25 Thread wang
wang added the comment: I mean in IDLE can run ok. the '\ufeff' is still have. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue13662] os.listdir bug

2011-12-25 Thread wang
wang added the comment: I mean in IDLE can run ok. the '\ufeff' is still have. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue13662] os.listdir bug

2011-12-25 Thread wang
wang added the comment: only I double click the script file generate this problem. in IDE not this problem. -- ___ Python tracker ___ ___

[issue13662] os.listdir bug

2011-12-25 Thread wang
New submission from wang : when I use os.list the return value is like this: ['some.xml', '\ufeff9158.xml'] but the file name have not the '\ufeff'. because this problem the script can't runing. -- messages: 150252 nosy: guxianminer priority: normal severity: normal status: open title: o