diff options
Diffstat (limited to 'Lib/sre_parse.py')
-rw-r--r-- | Lib/sre_parse.py | 4 |
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: |