Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/aiosqlite/__init__.py: 86%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

7 statements  

1# Copyright Amethyst Reese 

2# Licensed under the MIT license 

3 

4"""asyncio bridge to the standard sqlite3 module""" 

5 

6from sqlite3 import ( # pylint: disable=redefined-builtin 

7 DatabaseError, 

8 Error, 

9 IntegrityError, 

10 NotSupportedError, 

11 OperationalError, 

12 paramstyle, 

13 ProgrammingError, 

14 register_adapter, 

15 register_converter, 

16 Row, 

17 sqlite_version, 

18 sqlite_version_info, 

19 Warning, 

20) 

21 

22__author__ = "Amethyst Reese" 

23from .__version__ import __version__ 

24from .core import connect, Connection, Cursor 

25 

26__all__ = [ 

27 "__version__", 

28 "paramstyle", 

29 "register_adapter", 

30 "register_converter", 

31 "sqlite_version", 

32 "sqlite_version_info", 

33 "connect", 

34 "Connection", 

35 "Cursor", 

36 "Row", 

37 "Warning", 

38 "Error", 

39 "DatabaseError", 

40 "IntegrityError", 

41 "ProgrammingError", 

42 "OperationalError", 

43 "NotSupportedError", 

44]