rename markupbase to _markupbase

This commit is contained in:
Fred Drake 2007-12-07 11:10:11 +00:00
parent 15c3254958
commit cb5c80f6d9
3 changed files with 7 additions and 7 deletions

View file

@ -8,7 +8,7 @@
# and CDATA (character data -- only end tags are special).
import markupbase
import _markupbase
import re
# Regular expressions used for parsing
@ -64,7 +64,7 @@ def __str__(self):
return result
class HTMLParser(markupbase.ParserBase):
class HTMLParser(_markupbase.ParserBase):
"""Find tags and other markup and call handler functions.
Usage:
@ -96,7 +96,7 @@ def reset(self):
self.rawdata = ''
self.lasttag = '???'
self.interesting = interesting_normal
markupbase.ParserBase.reset(self)
_markupbase.ParserBase.reset(self)
def feed(self, data):
"""Feed data to the parser.

View file

@ -28,7 +28,7 @@ class ParserBase:
def __init__(self):
if self.__class__ is ParserBase:
raise RuntimeError(
"markupbase.ParserBase must be subclassed")
"_markupbase.ParserBase must be subclassed")
def error(self, message):
raise NotImplementedError(

View file

@ -9,7 +9,7 @@
# not supported at all.
import markupbase
import _markupbase
import re
__all__ = ["SGMLParser", "SGMLParseError"]
@ -52,7 +52,7 @@ class SGMLParseError(RuntimeError):
# chunks). Entity references are passed by calling
# self.handle_entityref() with the entity reference as argument.
class SGMLParser(markupbase.ParserBase):
class SGMLParser(_markupbase.ParserBase):
# Definition of entities -- derived classes may override
entity_or_charref = re.compile('&(?:'
'([a-zA-Z][-.a-zA-Z0-9]*)|#([0-9]+)'
@ -71,7 +71,7 @@ def reset(self):
self.lasttag = '???'
self.nomoretags = 0
self.literal = 0
markupbase.ParserBase.reset(self)
_markupbase.ParserBase.reset(self)
def setnomoretags(self):
"""Enter literal mode (CDATA) till EOF.