File: __init__.py

package info (click to toggle)
python-binary-memcached 0.30.0%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 288 kB
  • sloc: python: 1,702; makefile: 17
file content (11 lines) | stat: -rw-r--r-- 309 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
from bmemcached.client.constants import SOCKET_TIMEOUT

from .replicating import ReplicatingClient
from .distributed import DistributedClient

__all__ = ('Client', 'ReplicatingClient', 'DistributedClient', )


# Keep compatibility with old versions
Client = ReplicatingClient
_SOCKET_TIMEOUT = SOCKET_TIMEOUT