diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-03-22 23:24:28 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-03-22 23:24:28 +0000 |
commit | 41039f78e5ba400636a6a670c85d746105fc533a (patch) | |
tree | 823837a879bbbef0cf6ba29a73e6d855a7c37098 /lib/sqlalchemy/schema.py | |
parent | 642cf728b5427d125d526709e994043f888480dd (diff) | |
download | sqlalchemy-41039f78e5ba400636a6a670c85d746105fc533a.tar.gz |
documenting generative methods on query
Diffstat (limited to 'lib/sqlalchemy/schema.py')
-rw-r--r-- | lib/sqlalchemy/schema.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sqlalchemy/schema.py b/lib/sqlalchemy/schema.py index daaa0e681..aa993a270 100644 --- a/lib/sqlalchemy/schema.py +++ b/lib/sqlalchemy/schema.py @@ -1075,14 +1075,14 @@ class MetaData(SchemaItem): url a string or URL instance which will be passed to create_engine(), - along with **kwargs - this MetaData will be bound to the resulting + along with \**kwargs - this MetaData will be bound to the resulting engine. engine an Engine instance to which this MetaData will be bound. case_sensitive - popped from **kwargs, indicates default case sensitive setting for + popped from \**kwargs, indicates default case sensitive setting for all contained objects. defaults to True. """ @@ -1103,7 +1103,7 @@ class MetaData(SchemaItem): engine_or_url a string, URL or Engine instance. If a string or URL, - will be passed to create_engine() along with **kwargs to + will be passed to create_engine() along with \**kwargs to produce the engine which to connect to. otherwise connects directly to the given Engine. |