Python Mechanize 睡觉问题

mechanize默认会保存模拟过的操作历史,导致占用的内存越来越大

class NoHistory(object):
def add(self, *a, **k): pass
def clear(self): pass

b = mechanize.Browser(history=NoHistory())

你可能感兴趣的:(history,历史,的)