-
-
Notifications
You must be signed in to change notification settings - Fork 404
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
irc.py line 151: can't deal with chinese. utf8 #239
Comments
Can I get a full stacktrace please? |
于2013年04月24日 星期三 20时42分48秒,Elad Alfassa写到:
|
That's not what @elad661 asked for, there should be an exceptions.log in ~.willie\logs. Please copy the relevant part of that. |
That's okay, we found the bug. 4c6b0d34da93b678c0decbb7ace6240d0418e5b1 fixes it, though it opens up a bunch of other problems we'll have to deal with (see issue #240). |
This will probably break a few things, including the codepoints module. It also likely means that people still using weird formats like the assorted weird ISO ones might have unexpected behavior. Too bad. Call me a zealot but UTF-8 is the closest thing we have, or possibly could have, to a single standard that actually works for character encoding. It is the One True Encoding. This closes issue #239 but opens issue #240
This will probably break a few things, including the codepoints module. It also likely means that people still using weird formats like the assorted weird ISO ones might have unexpected behavior. Too bad. Call me a zealot but UTF-8 is the closest thing we have, or possibly could have, to a single standard that actually works for character encoding. It is the One True Encoding. This closes issue #239 but opens issue #240
may be :
string = str(string.decode('utf-8'))
The text was updated successfully, but these errors were encountered: