From 6a70b84166c3fc26ad63a9ed82238ed29685ec17 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 13 May 2011 01:34:24 -0400 Subject: [PATCH] docs on xlsx --- tablib/core.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tablib/core.py b/tablib/core.py index 03547ff..f464b55 100644 --- a/tablib/core.py +++ b/tablib/core.py @@ -377,7 +377,11 @@ class Dataset(object): @property def xls(): - """An Excel Spreadsheet representation of the :class:`Dataset` object, with :ref:`separators`. Cannot be set. + """A Legacy Excel Spreadsheet representation of the :class:`Dataset` object, with :ref:`separators`. Cannot be set. + + .. note:: + + XLS files are limited to a maximum of 65,000 rows. Use :class:`Dataset.xlsx` to avoid this limitation. .. admonition:: Binary Warning @@ -390,7 +394,7 @@ class Dataset(object): @property def xlsx(): - """An Excel Spreadsheet representation of the :class:`Dataset` object, with :ref:`separators`. Cannot be set. + """An Excel '07+ Spreadsheet representation of the :class:`Dataset` object, with :ref:`separators`. Cannot be set. .. admonition:: Binary Warning