From: Mike Bayer Date: Sun, 29 Jul 2007 03:09:49 +0000 (+0000) Subject: fixed 'column_literal' to 'literal_column' [ticket:626] X-Git-Tag: rel_0_4beta1~154 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c838a981021b83f5690234b1d55513417306ac61;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fixed 'column_literal' to 'literal_column' [ticket:626] --- diff --git a/lib/sqlalchemy/sql.py b/lib/sqlalchemy/sql.py index 0cc7d11ed2..e09dcca8dc 100644 --- a/lib/sqlalchemy/sql.py +++ b/lib/sqlalchemy/sql.py @@ -2615,7 +2615,7 @@ class _ColumnClause(ColumnElement): statements, but also any arbitrary text. May or may not be bound to an underlying ``Selectable``. ``_ColumnClause`` is usually created publically via the ``column()`` function or the - ``column_literal()`` function. + ``literal_column()`` function. text the text of the element. @@ -2635,7 +2635,7 @@ class _ColumnClause(ColumnElement): is_literal if True, the ``_ColumnClause`` is assumed to be an exact expression that will be delivered to the output with no quoting rules applied - regardless of case sensitive settings. the ``column_literal()`` function is + regardless of case sensitive settings. the ``literal_column()`` function is usually used to create such a ``_ColumnClause``. """