Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(6) | Call(2) | Derive(0) | Import(4)
src/p/y/python-binary-memcached-0.24/bmemcached/protocol.py python-binary-memcached(Download)
import zlib from bmemcached.exceptions import AuthenticationNotSupported, InvalidCredentials, MemcachedException
if not 'PLAIN' in methods: raise AuthenticationNotSupported('This module only supports ' 'PLAIN auth for now.')
src/p/y/python-binary-memcached-HEAD/bmemcached/protocol.py python-binary-memcached(Download)
import zlib from bmemcached.exceptions import AuthenticationNotSupported, InvalidCredentials, MemcachedException
if not 'PLAIN' in methods: raise AuthenticationNotSupported('This module only supports ' 'PLAIN auth for now.')
src/p/y/python-binary-memcached-HEAD/test/test_auth.py python-binary-memcached(Download)
import mock import unittest import bmemcached from bmemcached.exceptions import AuthenticationNotSupported, InvalidCredentials, MemcachedException
src/p/y/python-binary-memcached-0.24/test/test_auth.py python-binary-memcached(Download)
import mock import unittest import bmemcached from bmemcached.exceptions import AuthenticationNotSupported, InvalidCredentials, MemcachedException