Major reorganization of the soc svn repo, to merge into a single App Engine
image (to make development easier, now that only a single app will run all
Google Open Source programs).
"""Dummy database backend for Django.Django uses this if the DATABASE_ENGINE setting is empty (None or empty string).Each of these API functions, except connection.close(), raisesImproperlyConfigured."""from django.core.exceptions import ImproperlyConfiguredfrom django.db.backends import BaseDatabaseFeatures, BaseDatabaseOperationsdef complain(*args, **kwargs): raise ImproperlyConfigured, "You haven't set the DATABASE_ENGINE setting yet."def ignore(*args, **kwargs): passclass DatabaseError(Exception): passclass IntegrityError(DatabaseError): passclass DatabaseOperations(BaseDatabaseOperations): quote_name = complainclass DatabaseWrapper(object): features = BaseDatabaseFeatures() ops = DatabaseOperations() operators = {} cursor = complain _commit = complain _rollback = ignore def __init__(self, **kwargs): pass def close(self): pass