Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/sqlalchemy/future/__init__.py: 100%

7 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2023-06-07 06:35 +0000

1# sql/future/__init__.py 

2# Copyright (C) 2005-2023 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 

8"""Future 2.0 API features. 

9 

10""" 

11from .engine import Connection 

12from .engine import create_engine 

13from .engine import Engine 

14from ..sql.selectable import Select 

15from ..util.langhelpers import public_factory 

16 

17 

18select = public_factory(Select._create_future_select, ".future.select")