Exemplo n.º 1
0
 def _pre_parse(self, http_resp):
     """
     :param http_resp: The HTTP response document that contains the
     HTML document inside its body.
     """
     SGMLParser._pre_parse(self, http_resp)
     assert self._base_url, 'The base URL must be set.'
Exemplo n.º 2
0
 def _pre_parse(self, http_resp):
     """
     :param http_resp: The HTTP response document that contains the
     HTML document inside its body.
     """
     SGMLParser._pre_parse(self, http_resp)
     assert self._base_url, 'The base URL must be set.'
Exemplo n.º 3
0
 def _pre_parse(self, HTTPResponse):
     """
     :param HTTPResponse: The HTTP response document that contains the WML
     document inside its body.
     """
     
     SGMLParser._pre_parse(self, HTTPResponse)
     assert self._base_url is not None, 'The base URL must be set.'