»Core Development>Code coverage>Lib/sqlite3/__init__.py

Python code coverage for Lib/sqlite3/__init__.py

#countcontent
1n/a# pysqlite2/__init__.py: the pysqlite2 package.
2n/a#
3n/a# Copyright (C) 2005 Gerhard Häring <gh@ghaering.de>
4n/a#
5n/a# This file is part of pysqlite.
6n/a#
7n/a# This software is provided 'as-is', without any express or implied
8n/a# warranty. In no event will the authors be held liable for any damages
9n/a# arising from the use of this software.
10n/a#
11n/a# Permission is granted to anyone to use this software for any purpose,
12n/a# including commercial applications, and to alter it and redistribute it
13n/a# freely, subject to the following restrictions:
14n/a#
15n/a# 1. The origin of this software must not be misrepresented; you must not
16n/a# claim that you wrote the original software. If you use this software
17n/a# in a product, an acknowledgment in the product documentation would be
18n/a# appreciated but is not required.
19n/a# 2. Altered source versions must be plainly marked as such, and must not be
20n/a# misrepresented as being the original software.
21n/a# 3. This notice may not be removed or altered from any source distribution.
22n/a
23n/afrom sqlite3.dbapi2 import *