]> git.saurik.com Git - wxWidgets.git/commitdiff
Forgot to remove the debug prints
authorRobin Dunn <robin@alldunn.com>
Sat, 22 Nov 2003 21:16:46 +0000 (21:16 +0000)
committerRobin Dunn <robin@alldunn.com>
Sat, 22 Nov 2003 21:16:46 +0000 (21:16 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24630 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/wx/lib/wxpTag.py

index 8dbb7109d4ab910ac16e91e7534f395f9237b1be..49e5c4475bd974c8b8312794e9ac30f914372d38 100644 (file)
@@ -100,17 +100,14 @@ PARAMTAG = 'PARAM'
 
 class wxpTagHandler(wxHtmlWinTagHandler):
     def __init__(self):
-        print 'wxpTagHandler'
         wxHtmlWinTagHandler.__init__(self)
         self.ctx = None
 
     def GetSupportedTags(self):
-        print 'wxpTagHandler.GetSupportedTags'
         return WXPTAG+','+PARAMTAG
 
 
     def HandleTag(self, tag):
-        print 'wxpTagHandler.HandleTag'
         name = tag.GetName()
         if name == WXPTAG:
             return self.HandleWxpTag(tag)