summaryrefslogtreecommitdiffstats
path: root/Lib/sre_parse.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2004-01-18 20:29:55 (GMT)
committerTim Peters <tim.peters@gmail.com>2004-01-18 20:29:55 (GMT)
commit58eb11cf62dd04ccc2c364b62fd51b4265e2e203 (patch)
tree6b4639f640391b3d40332ee045dba325c63a920d /Lib/sre_parse.py
parent5303a968080bdb2690eaab89495ae51939fa6397 (diff)
downloadcpython-58eb11cf62dd04ccc2c364b62fd51b4265e2e203.zip
cpython-58eb11cf62dd04ccc2c364b62fd51b4265e2e203.tar.gz
cpython-58eb11cf62dd04ccc2c364b62fd51b4265e2e203.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/sre_parse.py')
-rw-r--r--Lib/sre_parse.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/sre_parse.py b/Lib/sre_parse.py
index fe5d143..9482bf8 100644
--- a/Lib/sre_parse.py
+++ b/Lib/sre_parse.py
@@ -365,9 +365,9 @@ def _parse_sub(source, state, nested=1):
return subpattern
def _parse_sub_cond(source, state, condgroup):
- item_yes = _parse(source, state)
+ item_yes = _parse(source, state)
if source.match("|"):
- item_no = _parse(source, state)
+ item_no = _parse(source, state)
if source.match("|"):
raise error, "conditional backref with more than two branches"
else: