Comment 24 for bug 315996

Revision history for this message
Alvin Penner (apenner) wrote :

    thanks, that helps a lot. It looks as if the python code ran essentially to completion before the crash occurred. The problem is either related to threading or the webbrowser import, both of which are unique to this extension.
    would you be willing to try one more experiment, this one is not destructive:

- open a DOS window, perhaps using Start->Run and typing in the command 'cmd'
- type the command : python
- type the command : import webbrowser
- type the command : webbrowser.open("http://inkscape.org/doc/keys046.html")
- type the command : exit()

on my machine this leads to a new browser window opening with Inkscape help.
attached is a trace of what my DOS window looked like after doing this.

......................................................

C:\>python
Python 2.5.1 (r251:54863, Apr 18 2007, 08:51:08) [MSC v.1310 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import webbrowser
>>> webbrowser.open("http://inkscape.org/doc/keys046.html")
True
>>> exit()