473,387 Members | 1,495 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

minidom + wxPython woes

Hi all,

I'm getting a seg fault when I try to use minidom to parse some XML
inside a wxPython app.

I was wondering if someone else could run the simple code below on
Linux and, if it doesn't crash horribly, post which versions of
(Python, wxPython) they are using? I can't find other messages related
to this, so I suspect it is something broken with my installation.
I'm using Python 2.4.2 and wx 2.6.1.0.

Incidentally, writing XML with minidom works fine, and this is all
happening in wxPython's main thread.
import wx
from xml.dom import minidom

app = wx.PySimpleApp()
frame = wx.Frame(None, -1, "Hello World")
frame.Show(True)
button = wx.Button(frame, -1, "Click me")

testxml = 'xml version="1.0" ?><foo></foo>'

def click(event):
doc = minidom.parseString(testxml) # seg fault?!
print "Success!"

frame.Bind(wx.EVT_BUTTON, click, button)

app.MainLoop()

Apr 7 '06 #1
9 1590
Oops, I missed a bracket... that should read:

testxml = '<xml version="1.0" ?><foo></foo>'

But it still crashes ;-)

Apr 7 '06 #2
Lonnie Princehouse wrote:
Oops, I missed a bracket... that should read:

testxml = '<xml version="1.0" ?><foo></foo>'

But it still crashes ;-)


Maybe missing a question mark still too?

<?xml version="1.0"?>

(It's like a processing instruction, not an element.)

-Peter

Apr 8 '06 #3

Lonnie Princehouse wrote:
Hi all,

I'm getting a seg fault when I try to use minidom to parse some XML
inside a wxPython app.

I was wondering if someone else could run the simple code below on
Linux and, if it doesn't crash horribly, post which versions of
(Python, wxPython) they are using? I can't find other messages related
to this, so I suspect it is something broken with my installation.
I'm using Python 2.4.2 and wx 2.6.1.0.

Incidentally, writing XML with minidom works fine, and this is all
happening in wxPython's main thread.
import wx
from xml.dom import minidom

app = wx.PySimpleApp()
frame = wx.Frame(None, -1, "Hello World")
frame.Show(True)
button = wx.Button(frame, -1, "Click me")

testxml = 'xml version="1.0" ?><foo></foo>'

def click(event):
doc = minidom.parseString(testxml) # seg fault?!
print "Success!"

frame.Bind(wx.EVT_BUTTON, click, button)

app.MainLoop()


This sounds similar to a problem I reported a few months ago. This is
the link.

http://groups.google.com/group/comp....bdf493f3c38942

In my case, it turned out to be a bug in the pyexpat module - it is
known about, but for some reason difficult to fix, so it is still
there.

I found a workaround, which is documented in the above thread.

HTH

Frank Millman

Apr 8 '06 #4
Frank Millman wrote:
This sounds similar to a problem I reported a few months ago. This is
the link.
http://groups.google.com/group/comp....bdf493f3c38942
In my case, it turned out to be a bug in the pyexpat module - it is
known about, but for some reason difficult to fix, so it is still
there.


no, it's not a bug in the pyexpat module -- the problem is that
wxPython uses it's own incompatible version of the expat library,
and loads it in a way that causes problems for any library that's
tries to use its own statically linked version.

see MvL's comments in the sourceforge tracker for more info.

</F>

Apr 8 '06 #5

Fredrik Lundh wrote:
Frank Millman wrote:
This sounds similar to a problem I reported a few months ago. This is
the link.

http://groups.google.com/group/comp....bdf493f3c38942

In my case, it turned out to be a bug in the pyexpat module - it is
known about, but for some reason difficult to fix, so it is still
there.


no, it's not a bug in the pyexpat module -- the problem is that
wxPython uses it's own incompatible version of the expat library,
and loads it in a way that causes problems for any library that's
tries to use its own statically linked version.

see MvL's comments in the sourceforge tracker for more info.

</F>


I had a look at the sourceforge tracker. I did not understand much of
it - rather too technical for me. There are two points worth noting.

Firstly, it seems from various posts to the tracker item that the same
problem has been reported with pygtk, Qt, and VTK.

Secondly, in tracker item 1295808 (which, according to the notes, is
actually the same bug), there is talk of submitting a patch in 2.5 to
address the issue.

It seems to me (FWIW - as I said, I do not really understand much of
what I read) that it may not technically be a bug in pyexpat, but there
is a real issue there, and the decision has been taken to make a change
to pyexpat so that the problem will not arise in the future.

Frank

Apr 8 '06 #6
Frank Millman wrote:
Fredrik Lundh wrote:

no, it's not a bug in the pyexpat module -- the problem is that
wxPython uses it's own incompatible version of the expat library,
and loads it in a way that causes problems for any library that's
tries to use its own statically linked version.

[...]
Firstly, it seems from various posts to the tracker item that the same
problem has been reported with pygtk, Qt, and VTK.


There used to be issues with Expat, PyXML and mod_python which may be
vaguely related to this, mostly because there was some usage of Expat
within some Apache component which conflicted with PyXML's Expat
configuration. In the end, I just dropped PyXML and started using other
libraries not affected by such issues, and I'm not totally sure that
anyone really resolved the problem definitively (although this was
possibly four or five years ago, so a lot can have happened since).

Paul

Apr 8 '06 #7
I'm hesitant to resort to tricks like "import pyexpat before wx, so
that symbols are loaded from the right library".

Luckily, I stumbled onto pxdom. It's a pure-python DOM implementation,
and switching to it was as easy as this:

# import xml.dom.minidom as dom
import pxdom as dom

Apr 10 '06 #8
Paul Boddie wrote:
Frank Millman wrote:
Fredrik Lundh wrote:

no, it's not a bug in the pyexpat module -- the problem is that
wxPython uses it's own incompatible version of the expat library,
and loads it in a way that causes problems for any library that's
tries to use its own statically linked version.


[...]
Firstly, it seems from various posts to the tracker item that the same
problem has been reported with pygtk, Qt, and VTK.


There used to be issues with Expat, PyXML and mod_python which may be
vaguely related to this, mostly because there was some usage of Expat
within some Apache component which conflicted with PyXML's Expat
configuration.


FYI, the incompatibility issues that arise with pyexpat in mod_python
are well documented at:

http://www.dscpl.com.au/articles/modpython-006.html

Graham

Apr 11 '06 #9
grah...@dscpl.com.au wrote:

FYI, the incompatibility issues that arise with pyexpat in mod_python
are well documented at:

http://www.dscpl.com.au/articles/modpython-006.html


Nice document! Is there some possibly-similar explanation of character
encoding issues with mod_python and Expat somewhere, too, or is that
problem long forgotten?

Paul

Apr 11 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: xtian | last post by:
Hi - I'm doing some data conversion with minidom (turning a csv file into a specific xml format), and I've hit a couple of small problems. 1: The output format has a header with some xml that...
2
by: Daniel Bickett | last post by:
Hello, I am writing an application using two event-driven libraries: wxPython, and twisted. The first problem I encountered in the program is the confliction between the two all-consuming...
5
by: Mike McGavin | last post by:
Hi everyone. I've been trying for several hours now to get minidom to parse namespaces properly from my stream of XML, so that I can use DOM methods such as getElementsByTagNameNS(). For some...
4
by: webdev | last post by:
lo all, some of the questions i'll ask below have most certainly been discussed already, i just hope someone's kind enough to answer them again to help me out.. so i started a python 2.3...
0
by: linuxfreak | last post by:
Hi all, I downloaded the wxpython2.6 tar ball and tried building an rpm from it in an opensuse 10 computer. The command i used was rpmbuild -tb <wxpython tar file> The build worked fine...
18
by: sim.sim | last post by:
Hi all. i'm faced to trouble using minidom: #i have a string (xml) within CDATA section, and the section includes "\r\n": iInStr = '<?xml version="1.0"?>\n<Data><!]></Data>\n' #After i...
0
by: Gary | last post by:
Howdy I ran into a difference between Python on Windows XP and Linux Fedora 6. Writing a dom to xml with minidom works on Linux. It gives an error on XP if there is an empty namespace. The...
3
by: aine_canby | last post by:
Hi, I'm working with a number of scripts which were written years ago for my company for Python 2.2, and I'd like to update for Python 2.5. I have written a script to add # -*- coding: cp1252...
2
by: ashmir.d | last post by:
Hi, I am trying to parse an xml file using the minidom parser. <code> from xml.dom import minidom xmlfilename = "sample.xml" xmldoc = minidom.parse(xmlfilename) </code> The parser is...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.