MCPcopy Create free account
hub / github.com/davidblewett/rure-python / findall

Method findall

rure/regex.py:114–115  ·  view source on GitHub ↗
(self, string, pos=0, endpos=None)

Source from the content-addressed store, hash-verified

112
113 @accepts_string
114 def findall(self, string, pos=0, endpos=None):
115 return [match.groups() for match in self.finditer(string, pos, endpos)]
116
117 @accepts_string
118 def finditer(self, string, pos=0, endpos=None):

Callers 3

findallFunction · 0.80
test_findallMethod · 0.80
mainFunction · 0.80

Calls 2

finditerMethod · 0.95
groupsMethod · 0.80

Tested by 1

test_findallMethod · 0.64