Vega strike Python Modules doc  0.5.1
Documentation of the " Modules " folder of Vega strike
 All Data Structures Namespaces Files Functions Variables
sgmllib.py File Reference

Go to the source code of this file.

Data Structures

class  SGMLParseError
 
class  SGMLParser
 
class  TestSGMLParser
 

Namespaces

 sgmllib
 

Constant Groups

 sgmllib
 

Functions

def test
 

Variables

list __all__ = ["SGMLParser"]
 
tuple interesting = re.compile('[&<]')
 
tuple incomplete
 
tuple entityref = re.compile('&([a-zA-Z][-.a-zA-Z0-9]*)[^a-zA-Z0-9]')
 
tuple charref = re.compile('&#([0-9]+)[^0-9]')
 
tuple starttagopen = re.compile('<[>a-zA-Z]')
 
tuple shorttagopen = re.compile('<[a-zA-Z][-.a-zA-Z0-9]*/')
 
tuple shorttag = re.compile('<([a-zA-Z][-.a-zA-Z0-9]*)/([^/]*)/')
 
tuple piclose = re.compile('>')
 
tuple endbracket = re.compile('[<>]')
 
tuple commentclose = re.compile(r'--\s*>')
 
tuple tagfind = re.compile('[a-zA-Z][-_.a-zA-Z0-9]*')
 
tuple attrfind