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 kawai
Recipients ggenellina, kawai, tksmashiw
Date 2009-01-24.08:48:17
SpamBayes Score 0.0025825496
Marked as misclassified No
Message-id <1232786899.55.0.558774543905.issue5036@psf.upfronthosting.co.za>
In-reply-to
Content
The sample code has bug. expat is OK.

Method char_data must append the incoming characters because the 
character sequence is an buffered input.
  def char_data(self, data):
    self.data += data

You should reset it by self.data = '' at end_element().
History
Date User Action Args
2009-01-24 08:48:19kawaisetrecipients: + kawai, ggenellina, tksmashiw
2009-01-24 08:48:19kawaisetmessageid: <1232786899.55.0.558774543905.issue5036@psf.upfronthosting.co.za>
2009-01-24 08:48:18kawailinkissue5036 messages
2009-01-24 08:48:18kawaicreate