~jafo/python-memcached/trunk

« back to all changes in this revision

Viewing changes to memcache.py

  • Committer: Sean Reifschneider
  • Date: 2011-11-27 23:23:18 UTC
  • Revision ID: jafo@tummy.com-20111127232318-1ku2vrxind6qub7u
Adding Makefile and fixing tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1117
1117
                return "%s (%s)" % (val, type(val))
1118
1118
            return "%s" % val
1119
1119
        def test_setget(key, val):
 
1120
            global failures
1120
1121
            print "Testing set/get {'%s': %s} ..." % (to_s(key), to_s(val)),
1121
1122
            mc.set(key, val)
1122
1123
            newval = mc.get(key)