~sumanah/mailman/mailman

« back to all changes in this revision

Viewing changes to src/mailman/rules/no_subject.py

  • Committer: Sumana Harihareswara
  • Date: 2015-01-08 21:35:58 UTC
  • mfrom: (7273.2.15 3.0)
  • Revision ID: sumanah@panix.com-20150108213558-65ym6553zj256z8p
mergeĀ fromĀ master

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2007-2014 by the Free Software Foundation, Inc.
 
1
# Copyright (C) 2007-2015 by the Free Software Foundation, Inc.
2
2
#
3
3
# This file is part of GNU Mailman.
4
4
#
17
17
 
18
18
"""The no-Subject header rule."""
19
19
 
20
 
from __future__ import absolute_import, print_function, unicode_literals
21
 
 
22
 
__metaclass__ = type
23
20
__all__ = [
24
21
    'NoSubject',
25
22
    ]
26
23
 
27
24
 
28
 
from zope.interface import implementer
29
 
 
30
25
from mailman.core.i18n import _
31
26
from mailman.interfaces.rules import IRule
 
27
from zope.interface import implementer
32
28
 
33
29
 
34
30