summaryrefslogtreecommitdiff
path: root/memcache.py
diff options
context:
space:
mode:
authorSean Reifschneider <jafo@guin.tummy.com>2010-02-08 14:38:10 -0700
committerSean Reifschneider <jafo@guin.tummy.com>2010-02-08 14:38:10 -0700
commit673b403966d078dd9b1bdab3e90f3cfb3afee78f (patch)
treeb97d1db405dfd38dc5dfbd2640d339c6342601b7 /memcache.py
parentba6bc5d192296f6dbf51de039a100ac6ff6c7838 (diff)
downloadpython-memcached-673b403966d078dd9b1bdab3e90f3cfb3afee78f.tar.gz
Changing licensing and authorship.
Diffstat (limited to 'memcache.py')
-rw-r--r--memcache.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/memcache.py b/memcache.py
index 8b1f10b..ab50b0e 100644
--- a/memcache.py
+++ b/memcache.py
@@ -77,10 +77,12 @@ except ImportError:
from StringIO import StringIO
-__author__ = "Evan Martin <martine@danga.com>"
+# Original author: Evan Martin of Danga Interactive
+__author__ = "Sean Reifschneider <jafo-memcached@tummy.com>"
__version__ = "1.31"
__copyright__ = "Copyright (C) 2003 Danga Interactive"
-__license__ = "Python"
+# http://en.wikipedia.org/wiki/Python_Software_Foundation_License
+__license__ = "Python Software Foundation License"
SERVER_MAX_KEY_LENGTH = 250
# Storing values larger than 1MB requires recompiling memcached. If you do,