From: <am...@us...> - 2010-04-16 18:22:48
|
Revision: 7029 http://jython.svn.sourceforge.net/jython/?rev=7029&view=rev Author: amak Date: 2010-04-16 18:22:42 +0000 (Fri, 16 Apr 2010) Log Message: ----------- Accidentally left in a debug statement. Modified Paths: -------------- trunk/jython/Lib/xml/sax/drivers2/drv_javasax.py Modified: trunk/jython/Lib/xml/sax/drivers2/drv_javasax.py =================================================================== --- trunk/jython/Lib/xml/sax/drivers2/drv_javasax.py 2010-04-16 18:12:55 UTC (rev 7028) +++ trunk/jython/Lib/xml/sax/drivers2/drv_javasax.py 2010-04-16 18:22:42 UTC (rev 7029) @@ -212,7 +212,6 @@ self._cont_handler.processingInstruction(target, data) def comment(self, char, start, len): - print "Content handler is %s" % self._cont_handler.__class__ self._cont_handler.comment(unicode(String(char, start, len))) class AttributesImpl: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |