diff -Nraup cmemcache-0.91/cmemcache.py cmemcache-0.91-patched/cmemcache.py --- cmemcache-0.91/cmemcache.py 2006-11-27 17:50:27.000000000 +0100 +++ cmemcache-0.91-patched/cmemcache.py 2007-04-13 15:41:19.000000000 +0200 @@ -60,7 +60,7 @@ from _cmemcache import StringClient #----------------------------------------------------------------------------------------- # -class Client(StringClient): +class cmemcacheClient(StringClient): """ Use memcached flags parameter to set/add/replace to handle any python class as the cache value. Also does int, long conversion to/from string. @@ -154,3 +154,9 @@ class Client(StringClient): return val +class Client(cmemcacheClient): + def set(*args, **kwargs): + return cmemcacheClient.set(*args, **kwargs) + 1 + + + \ No newline at end of file