Mercurial > p > roundup > code
comparison roundup/rcsv.py @ 2005:fc52d57c6c3e
documentation cleanup
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 11 Feb 2004 23:55:10 +0000 |
| parents | 0afdf96ea9d7 |
| children | 261c2e6ceb1e |
comparison
equal
deleted
inserted
replaced
| 2004:1782fe36e7b8 | 2005:fc52d57c6c3e |
|---|---|
| 1 """Supplies a Python-2.3 Object Craft csv module work-alike to the extent | |
| 2 needed by Roundup using the Python 2.3 csv module. | |
| 1 """ | 3 """ |
| 2 Supplies a Python-2.3 Object Craft csv module work-alike to the extent | 4 __docformat__ = 'restructuredtext' |
| 3 needed by Roundup using the Python 2.3 csv module. | |
| 4 | |
| 5 """ | |
| 6 | 5 |
| 7 from roundup.i18n import _ | 6 from roundup.i18n import _ |
| 8 from cStringIO import StringIO | 7 from cStringIO import StringIO |
| 9 error = """Sorry, you need a module compatible with the csv module. | 8 error = """Sorry, you need a module compatible with the csv module. |
| 10 Either upgrade your Python to 2.3 or later, or get and install | 9 Either upgrade your Python to 2.3 or later, or get and install |
