forked from celery/celery
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introducing Task classes. (after() not implemented yet, but that's go…
…ing to be really awesome) The arguments to tasks.register is now changed: Instead of task.register(task_name, task_func) it's now task.register(task_func, task_name) or alternatively task.register(TaskClass)
- Loading branch information
Ask Solem
committed
Apr 24, 2009
1 parent
ae3eeed
commit 462d470
Showing
5 changed files
with
69 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
include AUTHORS | ||
include README | ||
include README.rst | ||
include MANIFEST.in | ||
include LICENSE | ||
include Changelog | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
"""Distributed Task Queue for Django""" | ||
VERSION = (0, 1, 0) | ||
VERSION = (0, 1, 1) | ||
__version__ = ".".join(map(str, VERSION)) | ||
__author__ = "Ask Solem" | ||
__contact__ = "[email protected]" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters