Remove dead code.

This commit is contained in:
Vincent Driessen 2012-02-10 17:52:05 +01:00
parent e05acfedce
commit 791f8169f5
1 changed files with 0 additions and 9 deletions

View File

@ -154,7 +154,6 @@ class Job(object):
self.result = result
self.exc_info = exc_info
def save(self):
"""Persists the current job instance to its corresponding Redis key."""
key = self.key
@ -211,11 +210,3 @@ class Job(object):
def __hash__(self):
return hash(self.id)
# TODO: TO REFACTOR / REMOVE
def pickle(self):
"""Returns the pickle'd string represenation of a Job. Suitable for
writing to Redis.
"""
return dumps(self)