summaryrefslogtreecommitdiffstats
path: root/Lib/sgmllib.py
Commit message (Expand)AuthorAgeFilesLines
* Remove the htmllib and sgmllib modules as per PEP 3108.Georg Brandl2008-06-011-548/+0
* rename markupbase to _markupbaseFred Drake2007-12-071-3/+3
* Merged revisions 56782-56847 via svnmerge fromGuido van Rossum2007-08-091-1/+1
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-13/+13
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-1/+1
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-10/+9
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-44/+55
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-3/+31
* add name that should be considered public to __all__Fred Drake2004-09-091-1/+1
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-3/+3
* Patch #793559: Reset __starttext_tag. Fixes #709491. Backported to 2.3.Martin v. Löwis2003-09-201-1/+1
* Allow "@" in unquoted attribute values.Fred Drake2003-04-291-1/+1
* Whitespace normalization.Tim Peters2003-04-241-4/+4
* Patch #545300: Support marked sections.Martin v. Löwis2003-03-301-14/+8
* Accept commas in unquoted attribute values.Fred Drake2003-03-141-1/+1
* Replace boolean test with is None.Raymond Hettinger2002-06-021-1/+1
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-1/+1
* Re-arrange things and remove some unused variables/imports to keep pycheckerFred Drake2001-10-261-1/+0
* Re-factor the SGMLParser class to use the new markupbase.ParserBase class.Fred Drake2001-09-241-75/+34
* Patch #444359: Remove unused imports.Martin v. Löwis2001-08-021-1/+0
* Make the new docstrings better conform to Guido's style guide.Fred Drake2001-07-191-7/+15
* Added docstrings based on a patch by Evelyn Mitchell.Fred Drake2001-07-191-11/+16
* In CDATA mode, make sure entity-reference syntax is not interpreted;Fred Drake2001-07-161-8/+26
* Be more permissive in what is accepted as an attribute name; this makesFred Drake2001-07-141-1/+1
* Allow underscores in tag names and quote characters in unquoted attributeFred Drake2001-07-051-2/+2
* parse_declaration(): be more lenient in what we accept. We nowGuido van Rossum2001-05-211-12/+7
* Fix typo in exception name (SGMLParserError should be SGMLParseError)Guido van Rossum2001-04-151-1/+1
* Change RuntimeError to SGMLParseError, which subclasses RuntimeErrorFred Drake2001-03-161-5/+53
* Change "[%s]" % string.whitespace to r"\s" in regular expressions.Fred Drake2001-03-141-4/+3
* SF Patch # 103839 byt dougfort: Allow ';' in attributesGuido van Rossum2001-02-191-1/+1
* bunch more __all__ listsSkip Montanaro2001-02-151-0/+1
* Use ValueError instead of string.atoi.error, since we've switched toEric S. Raymond2001-02-091-1/+1
* String method conversion.Eric S. Raymond2001-02-091-5/+5
* Whitespace normalization.Tim Peters2001-01-151-2/+2
* Update the code to better reflect recommended style:Fred Drake2000-12-121-2/+2
* [Old patch that hadn't been checked in.]Fred Drake2000-06-291-2/+11
* typos fixed by Rob HooftJeremy Hylton2000-06-281-1/+1
* The third and final doc-string sweep by Ka-Ping Yee.Guido van Rossum2000-02-041-1/+1
* Allow recognition of attributes even if they don't have space in frontFred Drake1999-01-251-1/+1
* Patch by Chris Herborth (posted to comp.lang.python)to make it behaveGuido van Rossum1998-08-241-3/+3
* Put back the call to report_unbalanced() that was lost whenGuido van Rossum1998-07-071-0/+2
* Patch by Lars Marius Garshol:Guido van Rossum1998-05-281-2/+30
* Fix regexp for attrfind; bug reported by Lars Marius GarsholFred Drake1998-04-161-4/+4
* Mass check-in after untabifying all files that need it.Guido van Rossum1998-03-261-275/+275
* Although it's hard to be sure, I *think* this is a working conversionGuido van Rossum1997-10-231-67/+67
* (sgmllib.py): Partial acceptance of patch from David LeonardFred Drake1996-12-161-1/+1
* Reformatted with 4-space tab stops.Guido van Rossum1996-03-281-286/+406
* typos in attrfind regexGuido van Rossum1995-10-061-1/+1
* allow _ in attr names (Netscape!)Guido van Rossum1995-09-301-1/+1
* fix <!...!> parsing; added verbose option; don't lowercase entityrefsGuido van Rossum1995-09-221-5/+7