python-memcached icon indicating copy to clipboard operation
python-memcached copied to clipboard

A python memcached client library.

Results 70 python-memcached issues
Sort by recently updated
recently updated
newest added

``` /python_memcached-1.59-py3.8.egg/memcache.py:1303: SyntaxWarning: "is" with a literal. Did you mean "=="? if key is '': /python_memcached-1.59-py3.8.egg/memcache.py:1304: SyntaxWarning: "is" with a literal. Did you mean "=="? if key_extra_len is 0: ```

Hello! My app uses the python-memcached package and Python 2.7. I need to port the app to Python 3.7. Could you update the package to work on Python 3.7?

Hey there! I belong to an open source security research community, and a member (@rosenari) has found an issue, but doesn’t know the best way to disclose it. If not...

Hi, I've recently updated to Python 3.8 and python-memcached now emits 2 syntax warnings: ``` memcache.py:1303: SyntaxWarning: "is" with a literal. Did you mean "=="? if key is '': memcache.py:1304:...

The license file PSF.LICENSE exists in the source code but is not included in the wheel and tarball packages. Please include it.

I realize this will be controversial given how long the Python memcache API has been around. Relative to the memcached protocol, Python's API doesn't support CAS beyond very trivial use...

For a variety of reasons that are ultimately unimportant, I have not been able to find any attention for maintaining this package. I've recently had an offer from Morgan Fainberg...

It looks like setting flush on next connect executes a `flush_all` on the Memcache server on every reconnect. https://github.com/linsomniac/python-memcached/blob/master/memcache.py#L1413 This seems like a bug? Was the meaning of `self.flush()` misunderstood?...