diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-11-22 11:08:37 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-11-22 11:08:37 -0500 |
commit | 1bf1a9c0d8e122da79898835c007ea904e238c21 (patch) | |
tree | 4acd014eb6d07719a5b787519b05bcd03c81e879 | |
parent | 431b019c435654162b0d61b8131a170c5b858fb0 (diff) | |
download | sqlalchemy-1bf1a9c0d8e122da79898835c007ea904e238c21.tar.gz |
Fix rst for flake8-rst-docstrings-0.0.12
A few new formatting errors are caught by this version.
Change-Id: I737b33267a00f400b7ba7696a03ddb07a4c95bc0
-rw-r--r-- | lib/sqlalchemy/engine/result.py | 2 | ||||
-rw-r--r-- | lib/sqlalchemy/sql/base.py | 4 | ||||
-rw-r--r-- | test/orm/test_deferred.py | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/lib/sqlalchemy/engine/result.py b/lib/sqlalchemy/engine/result.py index 004a84da5..11d069c88 100644 --- a/lib/sqlalchemy/engine/result.py +++ b/lib/sqlalchemy/engine/result.py @@ -6,7 +6,7 @@ # the MIT License: http://www.opensource.org/licenses/mit-license.php """Define result set constructs including :class:`.ResultProxy` -and :class:`.Row.""" +and :class:`.Row`.""" import collections diff --git a/lib/sqlalchemy/sql/base.py b/lib/sqlalchemy/sql/base.py index d11a3a313..ce7fab5b0 100644 --- a/lib/sqlalchemy/sql/base.py +++ b/lib/sqlalchemy/sql/base.py @@ -822,14 +822,14 @@ class ColumnCollection(object): class DedupeColumnCollection(ColumnCollection): - """A :class:`.ColumnCollection that maintains deduplicating behavior. + """A :class:`.ColumnCollection` that maintains deduplicating behavior. This is useful by schema level objects such as :class:`.Table` and :class:`.PrimaryKeyConstraint`. The collection includes more sophisticated mutator methods as well to suit schema objects which require mutable column collections. - .. versionadded: 1.4 + .. versionadded:: 1.4 """ diff --git a/test/orm/test_deferred.py b/test/orm/test_deferred.py index 4f76fdc03..0b95c324d 100644 --- a/test/orm/test_deferred.py +++ b/test/orm/test_deferred.py @@ -989,7 +989,7 @@ class DeferredOptionsTest(AssertsCompiledSQL, _fixtures.FixtureTest): eq_(item.description, "item 4") def test_path_entity(self): - """test the legacy *addl_attrs argument.""" + r"""test the legacy \*addl_attrs argument.""" User = self.classes.User Order = self.classes.Order |