diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-04-24 16:02:54 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-04-24 16:02:54 +0000 |
commit | 0eadaac7dc3ae49974c105ff9e8c1e98a04d7d5a (patch) | |
tree | 6d84cc9f2da9f24dd76871e75a80e618fd519a27 /Lib/sgmllib.py | |
parent | 0822ff7ccab0465cf4377176089dfdbabbd0a35b (diff) | |
download | cpython-git-0eadaac7dc3ae49974c105ff9e8c1e98a04d7d5a.tar.gz |
Whitespace normalization.
Diffstat (limited to 'Lib/sgmllib.py')
-rw-r--r-- | Lib/sgmllib.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/sgmllib.py b/Lib/sgmllib.py index b259328bc5..4a8c3b4ca6 100644 --- a/Lib/sgmllib.py +++ b/Lib/sgmllib.py @@ -144,10 +144,10 @@ class SGMLParser(markupbase.ParserBase): break continue if rawdata.startswith("<!--", i): - # Strictly speaking, a comment is --.*-- - # within a declaration tag <!...>. - # This should be removed, - # and comments handled only in parse_declaration. + # Strictly speaking, a comment is --.*-- + # within a declaration tag <!...>. + # This should be removed, + # and comments handled only in parse_declaration. k = self.parse_comment(i) if k < 0: break i = k |