mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-18 09:55:59 +08:00
a few more stubs for sqlalchemy (#301)
This commit is contained in:
committed by
Guido van Rossum
parent
8ff5d7b7e2
commit
186b313f35
3
third_party/2.7/sqlalchemy/sql/schema.pyi
vendored
3
third_party/2.7/sqlalchemy/sql/schema.pyi
vendored
@@ -22,10 +22,11 @@ class SchemaItem(SchemaEventTarget, visitors.Visitable):
|
||||
|
||||
class Table(DialectKWArgs, SchemaItem, TableClause):
|
||||
def __init__(self, name, metadata, *args, **kwargs): ...
|
||||
def delete(self, *args, **kwargs): ...
|
||||
def insert(self, *args, **kwargs): ...
|
||||
def select(self, *args, **kwargs): ...
|
||||
def update(self, *args, **kwargs): ...
|
||||
def c(self, *args, **kwargs): ...
|
||||
c = ... # type: ColumnCollection
|
||||
|
||||
|
||||
class Column(SchemaItem, ColumnClause):
|
||||
|
||||
Reference in New Issue
Block a user