MCPcopy Create free account
hub / github.com/ActiveState/code / readlines

Method readlines

recipes/Python/572196_RSA/recipe-572196.py:225–229  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

223 break
224 return ret
225 def readlines(self):
226 ret=[]
227 while ret[-1]:
228 ret.append(self.readline())
229 return ret[:-1]
230 def next(self):
231 ret=self.readline()
232 if len(ret)==0:

Callers 15

watchFunction · 0.45
copyMethod · 0.45
renameFunction · 0.45
recipe-578164.pyFile · 0.45
charge_boiteFunction · 0.45
findcityFunction · 0.45
composeFunction · 0.45
recipe-66541.pyFile · 0.45
configureFunction · 0.45
recipe-52228.pyFile · 0.45
recipe-65109.pyFile · 0.45
test_compareFunction · 0.45

Calls 2

readlineMethod · 0.95
appendMethod · 0.45

Tested by 1

test_compareFunction · 0.36