From: Michael Elsdoerfer Date: Fri, 28 May 2010 07:40:45 +0000 (+0200) Subject: This comment wasn't really correct anymore, must have been accidentally copied from... X-Git-Tag: 0.2~8 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=94c5038ea32f73df00d3ab00019c1be5b6366b8e;p=django-tables2.git This comment wasn't really correct anymore, must have been accidentally copied from the old "Table" class. --- diff --git a/django_tables/memory.py b/django_tables/memory.py index 35ccac6..40d147c 100644 --- a/django_tables/memory.py +++ b/django_tables/memory.py @@ -29,9 +29,9 @@ def sort_table(data, order_by): class MemoryTable(BaseTable): - - # This is a separate class from BaseTable in order to abstract the way - # self.columns is specified. + """Table that is based on an in-memory dataset (a list of dict-like + objects). + """ def _build_snapshot(self): """Rebuilds the table whenever it's options change.