summaryrefslogtreecommitdiff
path: root/src/mailman/database/base.py
diff options
context:
space:
mode:
authorBarry Warsaw2014-09-23 09:09:45 -0400
committerBarry Warsaw2014-09-23 09:09:45 -0400
commitea124d4fba3e94d0d8885d898500c9a06d7daad0 (patch)
tree8400340d122d3e19ef719ea01a29a2c68021db29 /src/mailman/database/base.py
parent67315dbbeb781921c7eb530b996e1020ad84e91b (diff)
downloadmailman-ea124d4fba3e94d0d8885d898500c9a06d7daad0.tar.gz
mailman-ea124d4fba3e94d0d8885d898500c9a06d7daad0.tar.zst
mailman-ea124d4fba3e94d0d8885d898500c9a06d7daad0.zip
Diffstat (limited to 'src/mailman/database/base.py')
-rw-r--r--src/mailman/database/base.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/mailman/database/base.py b/src/mailman/database/base.py
index f67a60035..e360dcedf 100644
--- a/src/mailman/database/base.py
+++ b/src/mailman/database/base.py
@@ -62,16 +62,6 @@ class SABaseDatabase:
"""See `IDatabase`."""
self.store.rollback()
- def _database_exists(self):
- """Return True if the database exists and is initialized.
-
- Return False when Mailman needs to create and initialize the
- underlying database schema.
-
- Base classes *must* override this.
- """
- raise NotImplementedError
-
def _pre_reset(self, store):
"""Clean up method for testing.
@@ -124,7 +114,3 @@ class SABaseDatabase:
session = sessionmaker(bind=self.engine)
self.store = session()
self.store.commit()
-
- @staticmethod
- def _make_temporary():
- raise NotImplementedError