diff options
| author | Sean Reifschneider <jafo@guin.tummy.com> | 2010-02-08 14:38:10 -0700 |
|---|---|---|
| committer | Sean Reifschneider <jafo@guin.tummy.com> | 2010-02-08 14:38:10 -0700 |
| commit | 673b403966d078dd9b1bdab3e90f3cfb3afee78f (patch) | |
| tree | b97d1db405dfd38dc5dfbd2640d339c6342601b7 | |
| parent | ba6bc5d192296f6dbf51de039a100ac6ff6c7838 (diff) | |
| download | python-memcached-673b403966d078dd9b1bdab3e90f3cfb3afee78f.tar.gz | |
Changing licensing and authorship.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | PKG-INFO | 8 | ||||
| -rw-r--r-- | README | 7 | ||||
| -rw-r--r-- | memcache.py | 6 |
4 files changed, 17 insertions, 9 deletions
@@ -1,3 +1,8 @@ + * Changing the license to the PSF License. + + * Removing Evan's e-mail address at his request, changing authorship to + Sean. + Sat, 28 Nov 2009 01:07:42 -0700 Sean Reifschneider <jafo@tummy.com> * Version 1.45 @@ -2,9 +2,9 @@ Metadata-Version: 1.0 Name: python-memcached Version: 1.31 Summary: A Python memcached client library. -Home-page: http://www.danga.com/memcached/ -Author: Evan Martin -Author-email: martine@danga.com -License: Python +Home-page: http://www.tummy.com/Community/software/python-memcached/ +Author: Sean Reifschneider +Author-email: jafo-memcached@tummy.com +License: Python Software Foundation License Description: A Python memcached client library. Platform: UNKNOWN @@ -1,7 +1,8 @@ -This package was originally written by Evan Martin of Danga. -Sean Reifschneider of tummy.com, ltd. has taken over maintenance of it. - This software is a 100% Python interface to the memcached memory cache daemon. It is the client side software which allows storing values in one or more, possibly remote, memcached servers. Search google for memcached for more information. + +This package was originally written by Evan Martin of Danga. +Please do not contact Evan about maintenance. +Sean Reifschneider of tummy.com, ltd. has taken over maintenance of it. 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, |
