openpathsampling.netcdfplus.cache.MaxCache

class openpathsampling.netcdfplus.cache.MaxCache[source]

A dictionary, can hold infinite strong references

__init__()[source]

Methods

__init__()

clear()

copy()

fromkeys([value])

Create a new dictionary with keys from iterable and values set to value.

get(key[, default])

Return the value for key if key is in the dictionary, else default.

get_silent(item[, default])

get value by key if it exists, None else

items()

keys()

pop(k[,d])

If key is not found, default is returned if given, otherwise KeyError is raised

popitem()

Remove and return a (key, value) pair as a 2-tuple.

setdefault(key[, default])

Insert key with a value of default if key is not in the dictionary.

transfer(old_cache)

Transfer values between caches

update([E, ]**F)

If E is present and has a .keys() method, then does: for k in E: D[k] = E[k] If E is present and lacks a .keys() method, then does: for k, v in E: D[k] = v In either case, this is followed by: for k in F: D[k] = F[k]

values()

Attributes

count

the number of strong references int : the number of weak references

size

the maximal number of strong references, -1 if infinite int : the maximal number of weak references, -1 if infinite