Comment #8 on issue 1166 by [email protected]: ibus-anthy is broken? the system freezes for a few seconds
http://code.google.com/p/ibus/issues/detail?id=1166

I'm the original reporter of this bug, and I'm sorry about the confusion, but I don't think this is an ibus bug at all anymore. Ibus was just the first tangible piece software to be affected by this on my system.


The eric(4) package in Arch (and everywhere else perhaps) is at fault it seems.

File "/usr/lib/python2.7/site-packages/eric4.pth", line 2, in main
import sys; sys.setappdefaultencoding = sys.setdefaultencoding

The above breaks python at the point below.

File "/usr/lib/python2.7/site.py", line 162, in addpackage
exec line

I suppose it's a bad idea to place a semicolon and/or other code on the same line as an import statement. Just use a newline instead:
import sys
sys.setappdefaultencoding = sys.setdefaultencoding

--
You received this message because you are subscribed to the Google
Groups "ibus-devel" group.
iBus project web page: http://code.google.com/p/ibus/
iBus dev group: http://groups.google.com/group/ibus-devel?hl=en

回复