Tagged Questions
0
votes
1answer
271 views
python urllib.request.urlopen recursion fail
so i have the code
def constructGraph(self,url,doit=5):
if doit!=0:
m = urllib.request.urlopen(url)
print('test')
self.constructGraph('http://example.com',doit-1)
but ...