summaryrefslogtreecommitdiff
path: root/Lib/markupbase.py
diff options
context:
space:
mode:
authorMartin Blais <blais@furius.ca>2006-06-06 12:46:55 +0000
committerMartin Blais <blais@furius.ca>2006-06-06 12:46:55 +0000
commit06de3078e0d593dc8438f822edd0a63377179d1b (patch)
tree5afc666caa43f1001d921d7bec4dacdd3a6091fe /Lib/markupbase.py
parentec35227e88980c14681ad4032eed08e4f8cb50a9 (diff)
downloadcpython-06de3078e0d593dc8438f822edd0a63377179d1b.tar.gz
Normalized a few cases of whitespace in function declarations.
Found them using:: find . -name '*.py' | while read i ; do grep 'def[^(]*( ' $i /dev/null ; done find . -name '*.py' | while read i ; do grep ' ):' $i /dev/null ; done (I was doing this all over my own code anyway, because I'd been using spaces in all defs, so I thought I'd make a run on the Python code as well. If you need to do such fixes in your own code, you can use xx-rename or parenregu.el within emacs.)
Diffstat (limited to 'Lib/markupbase.py')
-rw-r--r--Lib/markupbase.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/markupbase.py b/Lib/markupbase.py
index 85b07a2fdc..24808d185b 100644
--- a/Lib/markupbase.py
+++ b/Lib/markupbase.py
@@ -140,7 +140,7 @@ class ParserBase:
# Internal -- parse a marked section
# Override this to handle MS-word extension syntax <![if word]>content<![endif]>
- def parse_marked_section( self, i, report=1 ):
+ def parse_marked_section(self, i, report=1):
rawdata= self.rawdata
assert rawdata[i:i+3] == '<![', "unexpected call to parse_marked_section()"
sectName, j = self._scan_name( i+3, i )