[ZPT] CVS: Packages/TAL - test_htmlparser.py:1.5
guido@digicool.com
guido@digicool.com
Thu, 22 Mar 2001 12:54:14 -0500 (EST)
Update of /cvs-repository/Packages/TAL/test
In directory korak:/tmp/cvs-serv30150/test
Modified Files:
test_htmlparser.py
Log Message:
Another round of cleanup. Change finish_ to handle_.
--- Updated File test_htmlparser.py in package Packages/TAL --
--- test_htmlparser.py 2001/03/22 17:17:53 1.4
+++ test_htmlparser.py 2001/03/22 17:54:13 1.5
@@ -33,13 +33,13 @@
# structure markup
- def finish_starttag(self, tag, attrs):
+ def handle_starttag(self, tag, attrs):
self.append(("starttag", tag, attrs))
- def finish_startendtag(self, tag, attrs):
+ def handle_startendtag(self, tag, attrs):
self.append(("startendtag", tag, attrs))
- def finish_endtag(self, tag):
+ def handle_endtag(self, tag):
self.append(("endtag", tag))
# all other markup