Browse Source

Autogenerated documentation for github.

Ask Solem 16 years ago
parent
commit
47f3a56a53
1 changed files with 21 additions and 2 deletions
  1. 21 2
      celery/result.py

+ 21 - 2
celery/result.py

@@ -3,7 +3,17 @@ from celery.backends import default_backend
 
 
 class BaseAsyncResult(object):
-    """Base class for pending result, takes ``backend`` argument."""
+    """Base class for pending result, takes ``backend`` argument.
+    
+    .. attribute:: task_id
+
+        The unique identifier for this task.
+
+    .. attribute:: backend
+       
+        The task result backend used.
+    
+    """
 
     def __init__(self, task_id, backend):
         self.task_id = task_id
@@ -58,7 +68,16 @@ class BaseAsyncResult(object):
 
 
 class AsyncResult(BaseAsyncResult):
-    """Pending task result using the default backend.""" 
+    """Pending task result using the default backend.
+
+    .. attribute:: task_id
+    
+        The unique identifier for this task.
+
+    .. attribute:: backend
+    
+        Instance of ``celery.backends.DefaultBackend``.
 
+    """
     def __init__(self, task_id):
         super(AsyncResult, self).__init__(task_id, backend=default_backend)