File: events.pyi

package info (click to toggle)
typeshed 0.0~git20221107.4f381af-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 18,036 kB
  • sloc: python: 3,216; sh: 62; makefile: 13
file content (10 lines) | stat: -rw-r--r-- 515 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
from .. import event

class DDLEvents(event.Events):
    def before_create(self, target, connection, **kw) -> None: ...
    def after_create(self, target, connection, **kw) -> None: ...
    def before_drop(self, target, connection, **kw) -> None: ...
    def after_drop(self, target, connection, **kw) -> None: ...
    def before_parent_attach(self, target, parent) -> None: ...
    def after_parent_attach(self, target, parent) -> None: ...
    def column_reflect(self, inspector, table, column_info) -> None: ...