diff options
author | Charles Gordon <charles@pinterest.com> | 2015-07-25 21:15:59 -0700 |
---|---|---|
committer | Charles Gordon <charles@pinterest.com> | 2015-07-25 21:15:59 -0700 |
commit | c6a5d9080b8c70c987abee5f4fde0f38a26ce41f (patch) | |
tree | 95bd3c4b83a04fc8570f9003d57a07a0468dfe9b /pymemcache | |
parent | 75c086b9bcdf7b8515fb999a6df1ce90e0a03e38 (diff) | |
parent | 01b9529bd940d350bd26fe9e8a6574d916324fde (diff) | |
download | pymemcache-c6a5d9080b8c70c987abee5f4fde0f38a26ce41f.tar.gz |
Merge branch 'master' of https://github.com/pinterest/pymemcache
Diffstat (limited to 'pymemcache')
-rw-r--r-- | pymemcache/client/__init__.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pymemcache/client/__init__.py b/pymemcache/client/__init__.py index 779283a..a6ff93b 100644 --- a/pymemcache/client/__init__.py +++ b/pymemcache/client/__init__.py @@ -1,3 +1,12 @@ # API Backwards compatibility + from pymemcache.client.base import Client # noqa from pymemcache.client.base import PooledClient # noqa + +from pymemcache.exceptions import MemcacheError # noqa +from pymemcache.exceptions import MemcacheClientError # noqa +from pymemcache.exceptions import MemcacheUnknownCommandError # noqa +from pymemcache.exceptions import MemcacheIllegalInputError # noqa +from pymemcache.exceptions import MemcacheServerError # noqa +from pymemcache.exceptions import MemcacheUnknownError # noqa +from pymemcache.exceptions import MemcacheUnexpectedCloseError # noqa |