Comment 4 for bug 120569

Revision history for this message
Alexander Roitman (shura) wrote : Re: [gutsy] gramps segfaults on load, and dumps

This is most likely to be the gtkspell problem. If you can reproduce the gramps crash, try running the code below in terminal, without gramps. It should not crash if there's no bug. If this crashes then it's a gtkspell bug.

$ python
>>> import gtk
>>> import gtkspell
>>> import locale
>>> lang = locale.getlocale()[0]
>>> if lang == None:
... print "lang is None"
... success = False
... else:
... gtkspell.Spell(gtk.TextView()).set_language(lang)
... success = True
...
>>> success
True