diff options
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/ranges.py')
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/ranges.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/ranges.py b/lib/sqlalchemy/dialects/postgresql/ranges.py index cefd280ea..20006e7ab 100644 --- a/lib/sqlalchemy/dialects/postgresql/ranges.py +++ b/lib/sqlalchemy/dialects/postgresql/ranges.py @@ -642,7 +642,11 @@ class Range(Generic[_T]): return self.difference(other) def intersection(self, other: Range[_T]) -> Range[_T]: - """Compute the intersection of this range with the `other`.""" + """Compute the intersection of this range with the `other`. + + .. versionadded:: 2.0.10 + + """ if self.empty or other.empty or not self.overlaps(other): return Range(None, None, empty=True) |