Re: expat parsing error

2010-06-02 Thread kak...@gmail.com
On 2 Ιούν, 03:47, John Machin wrote: > On Jun 2, 1:57 am, "kak...@gmail.com" wrote: > > > > > > > On Jun 1, 11:12 am, "kak...@gmail.com" wrote: > > > > On Jun 1, 11:09 am, John Bokma wrote: > > > > > "kak...@gmail.com" writes: > > > > > On Jun 1, 10:34 am, Stefan Behnel wrote: > > > > >> kak.

Re: expat parsing error

2010-06-01 Thread John Machin
On Jun 2, 1:57 am, "kak...@gmail.com" wrote: > On Jun 1, 11:12 am, "kak...@gmail.com" wrote: > > > > > On Jun 1, 11:09 am, John Bokma wrote: > > > > "kak...@gmail.com" writes: > > > > On Jun 1, 10:34 am, Stefan Behnel wrote: > > > >> kak...@gmail.com, 01.06.2010 16:00: > > > > >> > how can i f

Re: expat parsing error

2010-06-01 Thread kak...@gmail.com
On Jun 1, 11:12 am, "kak...@gmail.com" wrote: > On Jun 1, 11:09 am, John Bokma wrote: > > > > > "kak...@gmail.com" writes: > > > On Jun 1, 10:34 am, Stefan Behnel wrote: > > >> kak...@gmail.com, 01.06.2010 16:00: > > > >> > how can i fix it, how to "ignore" the headers and parse only > > >> > t

Re: expat parsing error

2010-06-01 Thread kak...@gmail.com
On Jun 1, 11:09 am, John Bokma wrote: > "kak...@gmail.com" writes: > > On Jun 1, 10:34 am, Stefan Behnel wrote: > >> kak...@gmail.com, 01.06.2010 16:00: > > >> > how can i fix it, how to "ignore" the headers and parse only > >> > the XML? > > >> Consider reading the answers you got in the last t

Re: expat parsing error

2010-06-01 Thread John Bokma
"kak...@gmail.com" writes: > On Jun 1, 10:34 am, Stefan Behnel wrote: >> kak...@gmail.com, 01.06.2010 16:00: >> >> > how can i fix it, how to "ignore" the headers and parse only >> > the XML? >> >> Consider reading the answers you got in the last thread that you opened >> with exactly this quest

Re: expat parsing error

2010-06-01 Thread kak...@gmail.com
On Jun 1, 10:34 am, Stefan Behnel wrote: > kak...@gmail.com, 01.06.2010 16:00: > > > how can i fix it, how to "ignore" the headers and parse only > > the XML? > > Consider reading the answers you got in the last thread that you opened > with exactly this question. > > Stefan That's exactly, what

Re: expat parsing error

2010-06-01 Thread Stefan Behnel
kak...@gmail.com, 01.06.2010 16:00: how can i fix it, how to "ignore" the headers and parse only the XML? Consider reading the answers you got in the last thread that you opened with exactly this question. Stefan -- http://mail.python.org/mailman/listinfo/python-list

Re: expat parsing error

2010-06-01 Thread John Bokma
"kak...@gmail.com" writes: > On Jun 1, 9:51 am, John Bokma wrote: >> "kak...@gmail.com" writes: >> > I got the following error >> > --- --- >> >   File "/usr/lib/python2.6/site-packages/Twisted-10.0.0-py2.6-linux- >> > x86_64.egg/twisted/internet/selectreactor.py", line 146, in >> > _doReadOrW

Re: expat parsing error

2010-06-01 Thread kak...@gmail.com
On Jun 1, 9:51 am, John Bokma wrote: > "kak...@gmail.com" writes: > > I got the following error > > --- --- > >   File "/usr/lib/python2.6/site-packages/Twisted-10.0.0-py2.6-linux- > > x86_64.egg/twisted/internet/selectreactor.py", line 146, in > > _doReadOrWrite > >     why = getattr(selectable

Re: expat parsing error

2010-06-01 Thread John Bokma
"kak...@gmail.com" writes: > I got the following error > --- --- > File "/usr/lib/python2.6/site-packages/Twisted-10.0.0-py2.6-linux- > x86_64.egg/twisted/internet/selectreactor.py", line 146, in > _doReadOrWrite > why = getattr(selectable, method)() > File "/usr/lib/python2.6/site-packa

expat parsing error

2010-06-01 Thread kak...@gmail.com
Hi i'm doing the following: def start_element(name, attrs): print 'Start element:', name, attrs def end_element(name): print 'End element:', name def char_data(data): print 'Character data:', repr(data) class SimpleServer(LineReceiver): # Using Twisted def connectionMade(self):

expat parsing error

2010-06-01 Thread kak...@gmail.com
Hi i'm doing the following: def start_element(name, attrs): print 'Start element:', name, attrs def end_element(name): print 'End element:', name def char_data(data): print 'Character data:', repr(data) class SimpleServer(LineReceiver): # Using Twisted def connectionMade(self):