updated api docs

This commit is contained in:
Gregor Aisch 2013-04-05 00:49:13 +02:00
parent e217d18007
commit 9de0ad3e82

View File

@ -34,10 +34,9 @@ class Table(object):
Drop the table from the database, deleting both the schema Drop the table from the database, deleting both the schema
and all the contents within it. and all the contents within it.
Note: the object will be in an unusable state after using this Note: the object will raise an Exception if you use it after
command and should not be used again. If you want to re-create dropping the table. If you want to re-create the table, make
the table, make sure to get a fresh instance from the sure to get a fresh instance from the :py:class:`Database <dataset.Database>`.
:py:class:`Database <dataset.Database>`.
""" """
self._is_dropped = True self._is_dropped = True
with self.database.lock: with self.database.lock: