mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-20 19:01:15 +08:00
Make the 'symmetric' argument to SQLAlchemy's between optional. (#327)
This commit is contained in:
committed by
Guido van Rossum
parent
998d787302
commit
4fee66c90b
2
third_party/2.7/sqlalchemy/sql/operators.pyi
vendored
2
third_party/2.7/sqlalchemy/sql/operators.pyi
vendored
@@ -27,7 +27,7 @@ class ColumnOperators(Operators):
|
||||
def nullsfirst(self): ...
|
||||
def nullslast(self): ...
|
||||
def collate(self, collation): ...
|
||||
def between(self, cleft, cright, symmetric: bool): ...
|
||||
def between(self, cleft, cright, symmetric: bool = ...): ...
|
||||
def distinct(self): ...
|
||||
|
||||
def __lt__(self, other): ...
|
||||
|
||||
Reference in New Issue
Block a user