~james-w/ubuntu/lucid/psycopg2/precise-backport

« back to all changes in this revision

Viewing changes to ZPsycopgDA/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Fabio Tranchitella
  • Date: 2010-04-10 10:32:45 UTC
  • mto: (5.1.8 sid)
  • mto: This revision was merged to the branch mainline in revision 14.
  • Revision ID: james.westby@ubuntu.com-20100410103245-9jnswnekb7li59xg
Tags: upstream-2.0.14
ImportĀ upstreamĀ versionĀ 2.0.14

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# ZPsycopgDA/__init__.py - ZPsycopgDA Zope product
2
2
#
3
 
# Copyright (C) 2004 Federico Di Gregorio <fog@initd.org>
4
 
#
5
 
# This program is free software; you can redistribute it and/or modify
6
 
# it under the terms of the GNU General Public License as published by the
7
 
# Free Software Foundation; either version 2, or (at your option) any later
8
 
# version.
9
 
#
10
 
# Or, at your option this program (ZPsycopgDA) can be distributed under the
11
 
# Zope Public License (ZPL) Version 1.0, as published on the Zope web site,
12
 
# http://www.zope.org/Resources/ZPL.
13
 
#
14
 
# This program is distributed in the hope that it will be useful, but
15
 
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY
16
 
# or FITNESS FOR A PARTICULAR PURPOSE.
17
 
#
18
 
# See the LICENSE file for details.
 
3
# Copyright (C) 2004-2010 Federico Di Gregorio  <fog@debian.org>
 
4
#
 
5
# psycopg2 is free software: you can redistribute it and/or modify it
 
6
# under the terms of the GNU Lesser General Public License as published
 
7
# by the Free Software Foundation, either version 3 of the License, or
 
8
# (at your option) any later version.
 
9
#
 
10
# psycopg2 is distributed in the hope that it will be useful, but WITHOUT
 
11
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 
12
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
 
13
# License for more details.
 
14
 
 
15
# Import modules needed by _psycopg to allow tools like py2exe to do
 
16
# their work without bothering about the module dependencies.
19
17
 
20
18
__doc__ = "ZPsycopg Database Adapter Registration." 
21
19
__version__ = '2.0'