diff options
author | Fred Drake <fdrake@acm.org> | 2001-10-26 18:02:28 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-10-26 18:02:28 (GMT) |
commit | 5445f078df1dc986259f75f6345afea19b27cb59 (patch) | |
tree | 4140acb5b1080811dc7899eb388d70d9bd3431ec /Lib/sgmllib.py | |
parent | c916f5a390b0ca559de54a15d4014e18792674ea (diff) | |
download | cpython-5445f078df1dc986259f75f6345afea19b27cb59.zip cpython-5445f078df1dc986259f75f6345afea19b27cb59.tar.gz cpython-5445f078df1dc986259f75f6345afea19b27cb59.tar.bz2 |
Re-arrange things and remove some unused variables/imports to keep pychecker
happy. (This does not cover everything it complained about, though.)
Diffstat (limited to 'Lib/sgmllib.py')
-rw-r--r-- | Lib/sgmllib.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/sgmllib.py b/Lib/sgmllib.py index 2de7492..1db5423 100644 --- a/Lib/sgmllib.py +++ b/Lib/sgmllib.py @@ -423,7 +423,6 @@ class SGMLParser(markupbase.ParserBase): def unknown_endtag(self, tag): pass def unknown_charref(self, ref): pass def unknown_entityref(self, ref): pass - def unknown_decl(self, data): pass class TestSGMLParser(SGMLParser): |