Remove documentation on old __getattr__ API

This commit is contained in:
Stefan Wehrmeyer 2014-01-31 22:10:17 +01:00
parent 3fd1c1185a
commit cd1d3a1d67

View File

@ -211,9 +211,6 @@ class Database(object):
# you can also use the short-hand syntax:
table = db['population']
# custom id and type
table2 = db['population2', 'age'] # default type is 'Integer'
table3 = db['population3', 'race', 'Text']
"""
if table_name in self._tables:
return Table(self, self._tables[table_name])