File: FAQ

package info (click to toggle)
wammu 0.33-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 3,848 kB
  • ctags: 826
  • sloc: python: 10,569; cs: 77; sh: 5; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 910 bytes parent folder | download | duplicates (3)
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").

------------------------------------------------------------------------------