Home
last modified time | relevance | path

Searched refs:ftpcache (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Lib/urllib/
Drequest.py1692 ftpcache = {} variable
1728 self.ftpcache = ftpcache
2068 if len(self.ftpcache) > MAXFTPCACHE:
2070 for k in list(self.ftpcache):
2072 v = self.ftpcache[k]
2073 del self.ftpcache[k]
2076 if key not in self.ftpcache:
2077 self.ftpcache[key] = \
2086 (fp, retrlen) = self.ftpcache[key].retrfile(file, type)
/third_party/python/Lib/test/
Dtest_urllib.py561 … urllib.request.ftpcache['test'] = urllib.request.ftpwrapper('user', 'pass', 'localhost', 21, [])