class Storage(object): __slots__ = ["_storage_provider", "_namespace"] def __init__(self, storage_provider, namespace): self._storage_provider = storage_provider self._namespace = namespace def set(self, option, value): self._storage_provider.set(self._namespace, option, value) def get(self, option, default=None): return self._storage_provider.get(self._namespace, option, default) def unset(self, option): self._storage_provider.unset(self._namespace, option)
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
.__init__.pyo.40009 | File | 361 B | 0644 |
|
.factory.pyo.40009 | File | 1.05 KB | 0644 |
|
.interfaces.pyo.40009 | File | 1.82 KB | 0644 |
|
.pickle_provider.pyo.40009 | File | 2.86 KB | 0644 |
|
.storage.pyo.40009 | File | 1.25 KB | 0644 |
|
__init__.py | File | 141 B | 0644 |
|
__init__.pyc | File | 361 B | 0644 |
|
__init__.pyo | File | 361 B | 0644 |
|
factory.py | File | 358 B | 0644 |
|
factory.pyc | File | 1.05 KB | 0644 |
|
factory.pyo | File | 1.05 KB | 0644 |
|
interfaces.py | File | 473 B | 0644 |
|
interfaces.pyc | File | 1.82 KB | 0644 |
|
interfaces.pyo | File | 1.82 KB | 0644 |
|
pickle_provider.py | File | 1.38 KB | 0644 |
|
pickle_provider.pyc | File | 2.86 KB | 0644 |
|
pickle_provider.pyo | File | 2.86 KB | 0644 |
|
storage.py | File | 482 B | 0644 |
|
storage.pyc | File | 1.25 KB | 0644 |
|
storage.pyo | File | 1.25 KB | 0644 |
|