Commit eae892d2 authored by Guido van Rossum's avatar Guido van Rossum

added note about missing features

parent a62b1003
......@@ -173,6 +173,8 @@ class SGMLParser:
# Now parse the data between i+1 and j into a tag and attrs
attrs = []
tagfind = regex.compile('[a-zA-Z][a-zA-Z0-9]*')
# XXX Should also support value-less attributes (e.g. ISMAP)
# XXX Should use regex.group()
attrfind = regex.compile(
'[ \t\n]+\([a-zA-Z][a-zA-Z0-9]*\)' +
'\([ \t\n]*=[ \t\n]*' +
......
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