Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/sqlparse/engine/__init__.py: 80%

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

5 statements  

1# 

2# Copyright (C) 2009-2020 the sqlparse authors and contributors 

3# <see AUTHORS file> 

4# 

5# This module is part of python-sqlparse and is released under 

6# the BSD License: https://opensource.org/licenses/BSD-3-Clause 

7 

8from sqlparse.engine import grouping 

9from sqlparse.engine.filter_stack import FilterStack 

10from sqlparse.engine.statement_splitter import StatementSplitter 

11 

12__all__ = [ 

13 'grouping', 

14 'FilterStack', 

15 'StatementSplitter', 

16]