summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorSean Reifschneider <jafo@guin.tummy.com>2009-11-27 18:21:49 -0700
committerSean Reifschneider <jafo@guin.tummy.com>2009-11-27 18:21:49 -0700
commitaa973f034fdfe4801db987afda8191177edefc04 (patch)
tree95b30ed59b48b10505fa16baeacd0c2872ffbbc2 /ChangeLog
parent4d2444aeaf1b3c05052f72c44ae0740ce9a34d40 (diff)
downloadpython-memcached-aa973f034fdfe4801db987afda8191177edefc04.tar.gz
* Fixing exception raising syntax. Patch by Samuel Stauffer.
* Optimizations in read code. Patch by Samuel Stauffer. * Changing classes to be newstyle. Patch by Samuel Stauffer. * Changed "has_key" to "in". Patch by Samuel Stauffer.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 037739e..0f2c89f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+ * Fixing exception raising syntax. Patch by Samuel Stauffer.
+
+ * Optimizations in read code. Patch by Samuel Stauffer.
+
+ * Changing classes to be newstyle. Patch by Samuel Stauffer.
+
+ * Changed "has_key" to "in". Patch by Samuel Stauffer.
+
* incr/decr were raising ValueError if the key did not exist, the
docstring said it returned none. Patch by Chihiro Sakatoku.