This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author jyrkialakuijala
Recipients
Date 2004-09-30.20:11:55
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Python 2.3.3 (#1, May  7 2004, 10:31:40)
[GCC 3.3.3 20040412 (Red Hat Linux 3.3.3-7)] on linux2

the code below crashes on fedora core 2:

------------------------------------
import libxml2

file = open("ihanmikavaan.xml", "w")
file.write("<doc>hajoa!</doc>")
file.close()

reader = libxml2.newTextReaderFilename("ihanmikavaan.xml")
reader.Close()

# reading after Close is a seg fault, not an exception
ret = reader.Read()
--------------------------------------
History
Date User Action Args
2007-08-23 14:26:30adminlinkissue1038013 messages
2007-08-23 14:26:30admincreate