14
0

Accepting request 180692 from home:dirkmueller:branches:devel:languages:python

- update to 1.53:
  *  Fixing set_multi() so that if the server closes the connection
     it will no longer raise AttributeError.  Issue found and resolution
     reviewed by Ben Hoyt.
  *  readline() now will mark the connection dead if the read fails.
     It was just closing it before.  This is related to the set_multi()
     change but worth noting separately.  Thanks to Ben Hoyt.
  *  Changing check_keys to use re.match() instead of str.translate(),
     because re.match() works with Python < 2.6.
     Found by Giovanni Di Milia.

OBS-URL: https://build.opensuse.org/request/show/180692
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-memcached?expand=0&rev=12
This commit is contained in:
Sascha Peilicke
2013-06-24 15:42:58 +00:00
committed by Git OBS Bridge
parent 9993abd5b6
commit 11de0c260d
4 changed files with 18 additions and 4 deletions

View File

@@ -1,3 +1,17 @@
-------------------------------------------------------------------
Sun Jun 23 21:21:17 UTC 2013 - dmueller@suse.com
- update to 1.53:
* Fixing set_multi() so that if the server closes the connection
it will no longer raise AttributeError. Issue found and resolution
reviewed by Ben Hoyt.
* readline() now will mark the connection dead if the read fails.
It was just closing it before. This is related to the set_multi()
change but worth noting separately. Thanks to Ben Hoyt.
* Changing check_keys to use re.match() instead of str.translate(),
because re.match() works with Python < 2.6.
Found by Giovanni Di Milia.
-------------------------------------------------------------------
Mon May 27 10:30:36 UTC 2013 - dmueller@suse.com