summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql/selectable.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2020-04-11 13:46:56 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2020-04-11 13:46:56 -0400
commit43bcb0de1ecc1dc2abd7e7c3eb0c39f3eab9adc0 (patch)
tree34cd5fe4d3b8471747de8dfb4c5ebbe5e0ea679f /lib/sqlalchemy/sql/selectable.py
parent6e1cbe426479438f1fc12ce6ae9424cf5d191ddf (diff)
downloadsqlalchemy-43bcb0de1ecc1dc2abd7e7c3eb0c39f3eab9adc0.tar.gz
Fix almost all read-level sphinx warnings
There are some related to changelog that I can't figure out and are likely due to something in the changelog extension. also one thing with a "collection" I can't figure out. Change-Id: I0a9e6f4291c3589aa19a4abcb9245cd22a266fe0
Diffstat (limited to 'lib/sqlalchemy/sql/selectable.py')
-rw-r--r--lib/sqlalchemy/sql/selectable.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/sqlalchemy/sql/selectable.py b/lib/sqlalchemy/sql/selectable.py
index 595b1bdfa..9c593ea5d 100644
--- a/lib/sqlalchemy/sql/selectable.py
+++ b/lib/sqlalchemy/sql/selectable.py
@@ -3814,19 +3814,19 @@ class Select(
"1.4",
"The :meth:`.Select.column` method is deprecated and will "
"be removed in a future release. Please use "
- ":meth:`.Select.add_columns",
+ ":meth:`.Select.add_columns`",
)
def column(self, column):
"""return a new select() construct with the given column expression
- added to its columns clause.
+ added to its columns clause.
- E.g.::
+ E.g.::
my_select = my_select.column(table.c.new_column)
- See the documentation for :meth:`.Select.with_only_columns`
- for guidelines on adding /replacing the columns of a
- :class:`.Select` object.
+ See the documentation for :meth:`.Select.with_only_columns`
+ for guidelines on adding /replacing the columns of a
+ :class:`.Select` object.
"""
return self.add_columns(column)