diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-06-09 17:56:31 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-06-09 17:56:31 -0400 |
commit | c0ff3eb9d7d9f75b50bbefc5365ece8ea6858e03 (patch) | |
tree | 86a755c967bc4f76b85b06537ba6e29cef71adc7 /lib/sqlalchemy/engine/reflection.py | |
parent | 258d2a8315a1362c2995c75507f849c01526d3d5 (diff) | |
download | sqlalchemy-c0ff3eb9d7d9f75b50bbefc5365ece8ea6858e03.tar.gz |
these notes about **kw are incorrect, we are talking about the return value here
Diffstat (limited to 'lib/sqlalchemy/engine/reflection.py')
-rw-r--r-- | lib/sqlalchemy/engine/reflection.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/sqlalchemy/engine/reflection.py b/lib/sqlalchemy/engine/reflection.py index e290c4429..50b3f774c 100644 --- a/lib/sqlalchemy/engine/reflection.py +++ b/lib/sqlalchemy/engine/reflection.py @@ -315,9 +315,6 @@ class Inspector(object): name optional name of the foreign key constraint. - \**kw - other options passed to the dialect's get_foreign_keys() method. - """ return self.dialect.get_foreign_keys(self.bind, table_name, schema, @@ -339,8 +336,6 @@ class Inspector(object): unique boolean - \**kw - other options passed to the dialect's get_indexes() method. """ return self.dialect.get_indexes(self.bind, table_name, @@ -359,9 +354,6 @@ class Inspector(object): column_names list of column names in order - \**kw - other options passed to the dialect's get_unique_constraints() method. - .. versionadded:: 0.9.0 """ |