1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Frequently asked questions about Wammu
======================================
------------------------------------------------------------------------------
Q1: [I hope this does not apply to current code, but just in case...]
I get segfault or some UnicodeEncodeError when working with some data from
phone, how can I avoid this?
A1: Most probably it is wxPython issue. It segfaults, when it gets non ASCII
character, that can not be converted to Unicode. This bug is reported -
#855297, you can check the bug status here:
https://sourceforge.net/tracker/?func=detail&atid=109863&aid=855297&group_id=9863
Workaround that helps in most situations is to enable setting default
charset in /usr/lib/pythonPYTHONVERSION/site.py (look for "Enable to
support locale aware default string encodings").
------------------------------------------------------------------------------
|