On 6/9/2010 2:30 PM, pyt...@bdurham.com wrote:
> I'm working on a set of unit tests designed to stress test some file
> handling capabilities of our application.
> ...
> UNITTEST_UNICODE_PATH = ur'\xunicode_test_\xb0_\xb1_'

That string consists of nothing but ordinary ASCII characters (in part,
because of the "r"). Were you trying to include some real Unicode
outside of the ASCII subset? If so, then maybe something like this:

UNITTEST_UNICODE_PATH = u"U\u00F1i\u00E7\u03B8de"

That's "Uñiçθde", which is a valid Windows file name.

-- 
Tim Roberts, t...@probo.com
Providenza & Boekelheide, Inc.

_______________________________________________
python-win32 mailing list
python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32

Reply via email to