🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

python-memcached

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

python-memcached - pypi Package Compare versions

Comparing version
1.61
to
1.62
+3
-3
memcache.py

@@ -80,3 +80,3 @@ #!/usr/bin/env python

__author__ = "Sean Reifschneider <jafo00@gmail.com>"
__version__ = "1.61"
__version__ = "1.62"
__copyright__ = "Copyright (C) 2003 Danga Interactive"

@@ -556,5 +556,5 @@ # http://en.wikipedia.org/wiki/Python_Software_Foundation_License

line = server.readline()
if line and line.strip() in [b'DELETED', b'NOT_FOUND']:
if line and line.strip() == b'DELETED':
return 1
self.debuglog('delete expected DELETED or NOT_FOUND, got: {!r}'.format(line))
self.debuglog('delete expected DELETED, got: {!r}'.format(line))
except OSError as msg:

@@ -561,0 +561,0 @@ if isinstance(msg, tuple):

Metadata-Version: 2.1
Name: python-memcached
Version: 1.61
Version: 1.62
Summary: Pure python memcached client
Home-page: https://github.com/linsomniac/python-memcached
Download-URL: https://github.com/linsomniac/python-memcached/releases/download/1.61/python-memcached-1.61.tar.gz
Download-URL: https://github.com/linsomniac/python-memcached/releases/download/1.62/python-memcached-1.62.tar.gz
Author: Evan Martin

@@ -29,5 +29,2 @@ Author-email: martine@danga.com

[![Build
Status](https://travis-ci.org/linsomniac/python-memcached.svg)](https://travis-ci.org/linsomniac/python-memcached)
## Overview

@@ -34,0 +31,0 @@

Metadata-Version: 2.1
Name: python-memcached
Version: 1.61
Version: 1.62
Summary: Pure python memcached client
Home-page: https://github.com/linsomniac/python-memcached
Download-URL: https://github.com/linsomniac/python-memcached/releases/download/1.61/python-memcached-1.61.tar.gz
Download-URL: https://github.com/linsomniac/python-memcached/releases/download/1.62/python-memcached-1.62.tar.gz
Author: Evan Martin

@@ -29,5 +29,2 @@ Author-email: martine@danga.com

[![Build
Status](https://travis-ci.org/linsomniac/python-memcached.svg)](https://travis-ci.org/linsomniac/python-memcached)
## Overview

@@ -34,0 +31,0 @@

@@ -1,4 +0,1 @@

[![Build
Status](https://travis-ci.org/linsomniac/python-memcached.svg)](https://travis-ci.org/linsomniac/python-memcached)
## Overview

@@ -5,0 +2,0 @@

@@ -59,2 +59,4 @@ # -*- coding: utf-8 -*-

self.assertEqual(self.mc.get("long"), None)
result = self.mc.delete("<missing>")
self.assertEqual(result, False)

@@ -61,0 +63,0 @@ def test_default(self):

Sorry, the diff of this file is not supported yet