MCPcopy Index your code
hub / github.com/ronreiter/interactive-tutorials / NoCache

Class NoCache

suds/cache.py:98–113  ·  view source on GitHub ↗

The passthru object cache.

Source from the content-addressed store, hash-verified

96
97
98class NoCache(Cache):
99 """
100 The passthru object cache.
101 """
102
103 def get(self, id):
104 return None
105
106 def getf(self, id):
107 return None
108
109 def put(self, id, object):
110 pass
111
112 def putf(self, id, fp):
113 pass
114
115
116class FileCache(Cache):

Callers 3

cacheMethod · 0.90
cacheMethod · 0.90
__init__Method · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected