~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/canonical/database/sqlbase.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-31 00:16:50 UTC
  • mfrom: (14606.3.7 apocaremains)
  • Revision ID: launchpad@pqm.canonical.com-20111231001650-pjeyhfjhm6mg3yp8
[r=wgrant][no-qa] Merge canonical.database into lp.services.database.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright 2011 Canonical Ltd.  This software is licensed under the
 
2
# GNU Affero General Public License version 3 (see the file LICENSE).
 
3
 
 
4
# Temporary shim for fti.py.
 
5
 
 
6
__all__ = [
 
7
    'connect',
 
8
    'ISOLATION_LEVEL_AUTOCOMMIT',
 
9
    'ISOLATION_LEVEL_READ_COMMITTED',
 
10
    'quote',
 
11
    'quote_identifier',
 
12
    ]
 
13
 
 
14
from lp.services.database.sqlbase import (
 
15
    connect,
 
16
    ISOLATION_LEVEL_AUTOCOMMIT,
 
17
    ISOLATION_LEVEL_READ_COMMITTED,
 
18
    quote,
 
19
    quote_identifier,
 
20
    )