Make the 'symmetric' argument to SQLAlchemy's between optional. (#327)

This commit is contained in:
garetht
2016-07-01 19:04:36 -04:00
committed by Guido van Rossum
parent 998d787302
commit 4fee66c90b

View File

@@ -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): ...