Commit cb5c80f6 authored by Fred Drake's avatar Fred Drake

rename markupbase to _markupbase

parent 15c32549
......@@ -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 @@ class HTMLParseError(Exception):
return result
class HTMLParser(markupbase.ParserBase):
class HTMLParser(_markupbase.ParserBase):
"""Find tags and other markup and call handler functions.
Usage:
......@@ -96,7 +96,7 @@ class HTMLParser(markupbase.ParserBase):
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.
......
......@@ -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(
......
......@@ -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 @@ class SGMLParser(markupbase.ParserBase):
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.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment