pyreason.scripts.interpretation.interpretation_dict

Module Contents

Classes

InterpretationDict

This class is specific for the interpretation for a specific timestep.

class InterpretationDict[source]

Bases: dict

This class is specific for the interpretation for a specific timestep.

clear()[source]

D.clear() -> None. Remove all items from D.

copy()[source]

D.copy() -> a shallow copy of D

has_key(k)[source]
update(*args, **kwargs)[source]

D.update([E, ]**F) -> None. Update D from dict/iterable E and 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]

keys()[source]

D.keys() -> a set-like object providing a view on D’s keys

values()[source]

D.values() -> an object providing a view on D’s values

items()[source]

D.items() -> a set-like object providing a view on D’s items

pop(*args)[source]

D.pop(k[,d]) -> v, remove specified key and return the corresponding value.

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