~barry/mailman/py3

« back to all changes in this revision

Viewing changes to src/mailman/database/transaction.py

  • Committer: Barry Warsaw
  • Date: 2014-12-23 01:06:20 UTC
  • Revision ID: barry@list.org-20141223010620-ea78sz3d067o3t22
Remove huge amounts of now unnecessary file boilerplate.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
"""Transactional support."""
19
19
 
20
 
from __future__ import absolute_import, print_function, unicode_literals
21
 
 
22
 
__metaclass__ = type
23
20
__all__ = [
24
21
    'dbconnection',
25
22
    'transaction',
28
25
 
29
26
 
30
27
from contextlib import contextmanager
31
 
 
32
28
from mailman.config import config
33
29
 
34
30