]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/wx/lib/wxpTag.py
corrected Unicode conversion when replacing shared library extension with ".rsrc"
[wxWidgets.git] / 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)