diff options
author | Raymond Hettinger <python@rcn.com> | 2014-06-23 02:47:22 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2014-06-23 02:47:22 (GMT) |
commit | 1c99bc84bd6bdc4fa2526424bb0db99a11facf48 (patch) | |
tree | 0c1e3ea6f943a87a175ef3d166cf991a8026e881 /Lib/sre_parse.py | |
parent | f6f78e1d9d7a70393455dd369ccd8e08eaf78e2c (diff) | |
download | cpython-1c99bc84bd6bdc4fa2526424bb0db99a11facf48.zip cpython-1c99bc84bd6bdc4fa2526424bb0db99a11facf48.tar.gz cpython-1c99bc84bd6bdc4fa2526424bb0db99a11facf48.tar.bz2 |
Issue #8343: Named group error msgs did not show the group name.
Diffstat (limited to 'Lib/sre_parse.py')
-rw-r--r-- | Lib/sre_parse.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Lib/sre_parse.py b/Lib/sre_parse.py index 399e7b7..3209ce0 100644 --- a/Lib/sre_parse.py +++ b/Lib/sre_parse.py @@ -616,7 +616,8 @@ def _parse(source, state): "%r" % name) gid = state.groupdict.get(name) if gid is None: - raise error("unknown group name") + msg = "unknown group name: {0!r}".format(name) + raise error(msg) subpatternappend((GROUPREF, gid)) continue else: @@ -669,7 +670,8 @@ def _parse(source, state): if condname.isidentifier(): condgroup = state.groupdict.get(condname) if condgroup is None: - raise error("unknown group name") + msg = "unknown group name: {0!r}".format(condname) + raise error(msg) else: try: condgroup = int(condname) @@ -806,7 +808,8 @@ def parse_template(source, pattern): try: index = pattern.groupindex[name] except KeyError: - raise IndexError("unknown group name") + msg = "unknown group name: {0!r}".format(name) + raise IndexError(msg) addgroup(index) elif c == "0": if s.next in OCTDIGITS: |