OLD | NEW |
(Empty) | |
| 1 """Compatibility namespace for those using dogpile.core. |
| 2 |
| 3 As of dogpile.cache 0.6.0, dogpile.core as a separate package |
| 4 is no longer used by dogpile.cache. |
| 5 |
| 6 Note that this namespace will not take effect if an actual |
| 7 dogpile.core installation is present. |
| 8 |
| 9 """ |
| 10 |
| 11 from .util import nameregistry # noqa |
| 12 from .util import readwrite_lock # noqa |
| 13 from .util.readwrite_lock import ReadWriteMutex # noqa |
| 14 from .util.nameregistry import NameRegistry # noqa |
| 15 from .lock import Lock # noqa |
| 16 from .lock import NeedRegenerationException # noqa |
| 17 from . import __version__ # noqa |
OLD | NEW |