Lines Matching refs:group
948 "start($self, group=0, /)\n"
951 "Return index of the start of the substring matched by group.");
957 _sre_SRE_Match_start_impl(MatchObject *self, PyObject *group);
963 PyObject *group = NULL;
972 group = args[0];
974 _return_value = _sre_SRE_Match_start_impl(self, group);
985 "end($self, group=0, /)\n"
988 "Return index of the end of the substring matched by group.");
994 _sre_SRE_Match_end_impl(MatchObject *self, PyObject *group);
1000 PyObject *group = NULL;
1009 group = args[0];
1011 _return_value = _sre_SRE_Match_end_impl(self, group);
1022 "span($self, group=0, /)\n"
1025 "For match object m, return the 2-tuple (m.start(group), m.end(group)).");
1031 _sre_SRE_Match_span_impl(MatchObject *self, PyObject *group);
1037 PyObject *group = NULL;
1045 group = args[0];
1047 return_value = _sre_SRE_Match_span_impl(self, group);