From 9083803e2169f88e4a4972ad22c61d02796a4bb4 Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Sun, 7 Oct 2007 14:25:45 +0000 Subject: [PATCH] 2007-10-07 Don Allingham * src/gen/db/__init__.py: commit svn: r9092 --- ChangeLog | 3 +++ src/gen/db/__init__.py | 28 ++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 src/gen/db/__init__.py diff --git a/ChangeLog b/ChangeLog index 3dd358a2d..f75d5250a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2007-10-07 Don Allingham + * src/gen/db/__init__.py: commit + 2007-10-06 Don Allingham * various: creation of gen.db package diff --git a/src/gen/db/__init__.py b/src/gen/db/__init__.py new file mode 100644 index 000000000..a4deeb7f6 --- /dev/null +++ b/src/gen/db/__init__.py @@ -0,0 +1,28 @@ +# +# Gramps - a GTK+/GNOME based genealogy program +# +# Copyright (C) 2000-2007 Donald N. Allingham +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# + +__version__ = "$Revision: $" + +from base import * +from callback import * +from cursor import * +from dbconst import * +from dbdir import * +from exceptions import *