Mercurial > p > roundup > code
comparison roundup/cgi/TAL/markupbase.py @ 2005:fc52d57c6c3e
documentation cleanup
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 11 Feb 2004 23:55:10 +0000 |
| parents | b9988e118055 |
| children | 8c2402a78bb0 |
comparison
equal
deleted
inserted
replaced
| 2004:1782fe36e7b8 | 2005:fc52d57c6c3e |
|---|---|
| 1 """Shared support for scanning document type declarations in HTML and XHTML.""" | 1 """Shared support for scanning document type declarations in HTML and XHTML. |
| 2 """ | |
| 3 __docformat__ = 'restructuredtext' | |
| 2 | 4 |
| 3 import re | 5 import re |
| 4 import string | 6 import string |
| 5 | 7 |
| 6 _declname_match = re.compile(r'[a-zA-Z][-_.a-zA-Z0-9]*\s*').match | 8 _declname_match = re.compile(r'[a-zA-Z][-_.a-zA-Z0-9]*\s*').match |
