Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using python 3.1, on a windows 7 machines. Russian is the default system language, and utf-8 is the default encoding.

Looking at the answer to a previous question, I have attempting using the "codecs" module to give me a little luck. Here's a few examples:

>>> g = codecs.open("C:\Users\Eric\Desktop\beeline.txt", "r", encoding="utf-8")
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-4: truncated \UXXXXXXXX escape (<pyshell#39>, line 1)
>>> g = codecs.open("C:\Users\Eric\Desktop\Site.txt", "r", encoding="utf-8")
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-4: truncated \UXXXXXXXX escape (<pyshell#40>, line 1)
>>> g = codecs.open("C:\Python31\Notes.txt", "r", encoding="utf-8")
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 11-12: malformed \N character escape (<pyshell#41>, line 1)
>>> g = codecs.open("C:\Users\Eric\Desktop\Site.txt", "r", encoding="utf-8")
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-4: truncated \UXXXXXXXX escape (<pyshell#44>, line 1)

My last idea was, I thought it might have been the fact that windows "translates" a few folders, such as the "users" folder, into Russian (though typing "users" is still the correct path), so I tried it in the Python31 folder. Still, no luck. Any ideas?

share|improve this question
Unrelated to your question, but it's highly advised you not use Python 3.x yet, unless you have a particularly good reason to, like porting a library over to it. – aehlke Aug 28 '09 at 15:39
Wahnfrieden - why? Not as much library support, sure, but other than that? – orip Aug 28 '09 at 15:48
1  
@Wahnfrieden What? Python 2 is to be phased out in the future, so it makes sense to use Python 3, despite its "lack" of "maturity". – Humphrey Bogart Feb 24 '10 at 0:11
@Beau Martinez @orip (significant) lack of library support is a good enough reason for most cases. With the Py3k features back-ported to Python 2.6 and 2.7, porting to 3.x later on will be easy anyway, and you don't sacrifice huge amounts of library support (which is especially hazardous if you're a new user and can't properly anticipate which libraries you'd want). – aehlke Feb 25 '10 at 3:10

1 Answer

up vote 30 down vote accepted

The problem is with the string

"C:\Users\Eric\Desktop\beeline.txt"

Here, \U starts an eight-character Unicode escape, such as '\U00014321`. In your code, the escape is followed by the character 's', which is invalid.

You either need to duplicate all backslashes, or prefix the string with r (to produce a raw string).

share|improve this answer
2  
Hahaha... What an easy trap to fall into, like I just have. Awesome answer. – Humphrey Bogart Feb 24 '10 at 0:04
I found this error in a function docstring while porting a 2.x code to python3. – Sridhar Ratnakumar Apr 28 '10 at 20:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.