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 techtonik
Recipients techtonik
Date 2012-12-10.11:41:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1355139704.15.0.993406857034.issue16656@psf.upfronthosting.co.za>
In-reply-to
Content
This critical bug is one of the reasons that non-English speaking communities doesn't adopt Python as broadly as it happens in English world compared to other technologies (PHP etc.). 


# -*- coding: utf-8 -*-

import os

os.mkdir(u'Русское имя')
os.mkdir(u'English name')

for r, dirs, files in os.walk('.'):
  print dirs


This gives:
['English name']
[]


Windows Vista.
>dir /b
English name
test.py
Русское имя
History
Date User Action Args
2012-12-10 11:41:44techtoniksetrecipients: + techtonik
2012-12-10 11:41:44techtoniksetmessageid: <1355139704.15.0.993406857034.issue16656@psf.upfronthosting.co.za>
2012-12-10 11:41:44techtoniklinkissue16656 messages
2012-12-10 11:41:43techtonikcreate