Skip to content

Commit

Permalink
Render README
Browse files Browse the repository at this point in the history
  • Loading branch information
ask committed Jul 7, 2012
1 parent 4e0821f commit f75c355
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 22 deletions.
16 changes: 6 additions & 10 deletions README.rst
Expand Up @@ -13,10 +13,6 @@

--

.. contents::
:local:
:depth: 1

What is a Task Queue?
=====================

Expand Down Expand Up @@ -48,9 +44,9 @@ What do I need?

Celery version 3.0 runs on,

- Python 2.5, 2.6, 2.7, 3.2, 3.3
- PyPy 1.8, 1.9
- Jython 2.5, 2.7.
- Python (2.5, 2.6, 2.7, 3.2, 3.3)
- PyPy (1.8, 1.9)
- Jython (2.5, 2.7).

This is the last version to support Python 2.5,
and from Celery 3.1, Python 2.6 or later is required.
Expand Down Expand Up @@ -85,8 +81,8 @@ getting started tutorials:
.. _`Next steps`:
http://docs.celeryproject.org/en/latest/getting-started/next-steps.html

Celery is
==========
Celery is...
============

- **Simple**

Expand Down Expand Up @@ -132,7 +128,7 @@ It supports...
- MongoDB_, Beanstalk_,
- CouchDB_, SQLAlchemy_,
- Django ORM, Amazon SQS,
- and more
- and more...

- **Concurrency**

Expand Down
2 changes: 1 addition & 1 deletion celery/canvas.py
Expand Up @@ -301,7 +301,7 @@ def __init__(self, *tasks, **options):
if len(tasks) == 1:
tasks = _maybe_group(tasks[0])
Signature.__init__(self,
'celery.group', (),{'tasks': tasks}, **options)
'celery.group', (), {'tasks': tasks}, **options)
self.tasks, self.subtask_type = tasks, 'group'

@classmethod
Expand Down
2 changes: 1 addition & 1 deletion celery/tests/tasks/test_result.py
Expand Up @@ -248,7 +248,7 @@ def test_ready(self):
class test_ResultSet(AppCase):

def test_resultset_repr(self):
self.assertTrue(repr(ResultSet(map(AsyncResult, [1, 2, 3]))))
self.assertTrue(repr(ResultSet(map(AsyncResult, ['1', '2', '3']))))

def test_eq_other(self):
self.assertFalse(ResultSet([1, 3, 3]) == 1)
Expand Down
16 changes: 6 additions & 10 deletions docs/includes/introduction.txt
Expand Up @@ -7,10 +7,6 @@

--

.. contents::
:local:
:depth: 1

What is a Task Queue?
=====================

Expand Down Expand Up @@ -42,9 +38,9 @@ What do I need?

Celery version 3.0 runs on,

- Python 2.5, 2.6, 2.7, 3.2, 3.3
- PyPy 1.8, 1.9
- Jython 2.5, 2.7.
- Python (2.5, 2.6, 2.7, 3.2, 3.3)
- PyPy (1.8, 1.9)
- Jython (2.5, 2.7).

This is the last version to support Python 2.5,
and from Celery 3.1, Python 2.6 or later is required.
Expand Down Expand Up @@ -79,8 +75,8 @@ getting started tutorials:
.. _`Next steps`:
http://docs.celeryproject.org/en/latest/getting-started/next-steps.html

Celery is
==========
Celery is...
============

- **Simple**

Expand Down Expand Up @@ -126,7 +122,7 @@ It supports...
- MongoDB_, Beanstalk_,
- CouchDB_, SQLAlchemy_,
- Django ORM, Amazon SQS,
- and more
- and more...

- **Concurrency**

Expand Down

0 comments on commit f75c355

Please sign in to comment.