Package: python-memcache / 1.57-1~bpo8+1

Metadata

Package Version Patches format
python-memcache 1.57-1~bpo8+1 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
using port 11212 instead of standard 11211.patch | (download)

tests/test_memcache.py | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 do not use memcache standard port
 Because of the way we run tests in Debian, it's advised not to use the
 standard port of memcached, so we can run another (test specific) instance
 of memcached.
More_Python_3_fixes.patch | (download)

memcache.py | 273 28 + 245 - 0 !
tests/test_memcache.py | 137 59 + 78 - 0 !
tests/test_setmulti.py | 6 4 + 2 - 0 !
tox.ini | 4 3 + 1 - 0 !
4 files changed, 94 insertions(+), 326 deletions(-)

 [patch] more python 3 fixes
 * Port set_multi() to Python 3
 * Port delete_multi() to Python 3
 * Fix _get_server() on Python 3 when the connection to the first server
   fails: encode to ASCII before calling serverHashFunction.
 * Fix expect(): don't decode line on Python 3, return the raw line
 * Add more unit tests
 * tox now also runs unit tests
 * Explicit the encoding when calling str.encode(): use 'utf-8'
 * test_memcache: close sockets in tearDown()
 * test_get_unknown_value(): delete the key to ensure that it doesn't exist