您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

18 行
525 B

  1. # events.py
  2. # Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
  3. # <see AUTHORS file>
  4. #
  5. # This module is part of SQLAlchemy and is released under
  6. # the MIT License: https://www.opensource.org/licenses/mit-license.php
  7. """Core event interfaces."""
  8. from __future__ import annotations
  9. from .engine.events import ConnectionEvents
  10. from .engine.events import DialectEvents
  11. from .pool import PoolResetState
  12. from .pool.events import PoolEvents
  13. from .sql.base import SchemaEventTarget
  14. from .sql.events import DDLEvents