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 vojta.rylko
Recipients amaury.forgeotdarc, docs@python, vojta.rylko
Date 2010-10-05.11:38:14
SpamBayes Score 5.60435e-05
Marked as misclassified No
Message-id <1286278697.14.0.224791721873.issue10026@psf.upfronthosting.co.za>
In-reply-to
Content
Program below also splits two of 10 000 elements into two rows. Is it acceptable behavior?

OUTPUT (ill part)
=============
<DOM Text node "u'Twitter'">
<DOM Text node "u'\n'">
<DOM Text node "u'Twi'">
<DOM Text node "u'tter'">
<DOM Text node "u'\n'">
<DOM Text node "u'Twitter'">
<DOM Text node "u'\n'">
<DOM Text node "u'Twitter'">


PROGRAM
=============
for event, node in events:
        if event == pulldom.CHARACTERS:
                print node.data
History
Date User Action Args
2010-10-05 11:38:17vojta.rylkosetrecipients: + vojta.rylko, amaury.forgeotdarc, docs@python
2010-10-05 11:38:17vojta.rylkosetmessageid: <1286278697.14.0.224791721873.issue10026@psf.upfronthosting.co.za>
2010-10-05 11:38:14vojta.rylkolinkissue10026 messages
2010-10-05 11:38:14vojta.rylkocreate