diff options
author | Eric V. Smith <eric@trueblade.com> | 2016-09-11 14:20:27 (GMT) |
---|---|---|
committer | Eric V. Smith <eric@trueblade.com> | 2016-09-11 14:20:27 (GMT) |
commit | a6d75fdc37e4cbc49fe64420219f3b4da1b20cef (patch) | |
tree | 4ac797f08d499cbbab58de82226d3fce3d81f16d | |
parent | d5ee406ff1426b4e9cfb9a8d8e5b1d43fb9607b2 (diff) | |
download | cpython-a6d75fdc37e4cbc49fe64420219f3b4da1b20cef.zip cpython-a6d75fdc37e4cbc49fe64420219f3b4da1b20cef.tar.gz cpython-a6d75fdc37e4cbc49fe64420219f3b4da1b20cef.tar.bz2 |
Issue 24454: Removed unused match_getitem_doc.
-rw-r--r-- | Modules/_sre.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Modules/_sre.c b/Modules/_sre.c index a25d935..69c7bc0 100644 --- a/Modules/_sre.c +++ b/Modules/_sre.c @@ -2422,9 +2422,6 @@ PyDoc_STRVAR(match_group_doc, Return subgroup(s) of the match by indices or names.\n\ For 0 returns the entire match."); -PyDoc_STRVAR(match_getitem_doc, -"__getitem__(name) <==> group(name).\n"); - static PyObject * match_lastindex_get(MatchObject *self) { |