summaryrefslogtreecommitdiff
path: root/src/mailman/core/system.py
diff options
context:
space:
mode:
authorBarry Warsaw2009-04-01 16:22:40 -0500
committerBarry Warsaw2009-04-01 16:22:40 -0500
commitc33b7e899e02e3c274b077b17caa016257580b37 (patch)
tree9103e6759e6659822bad0b626f7224ce03a5fa62 /src/mailman/core/system.py
parent9ff1079e0efc68fc64b91c6d0728f933df84abc7 (diff)
downloadmailman-c33b7e899e02e3c274b077b17caa016257580b37.tar.gz
mailman-c33b7e899e02e3c274b077b17caa016257580b37.tar.zst
mailman-c33b7e899e02e3c274b077b17caa016257580b37.zip
Diffstat (limited to 'src/mailman/core/system.py')
-rw-r--r--src/mailman/core/system.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mailman/core/system.py b/src/mailman/core/system.py
index 0f6d0834f..18fdfc10c 100644
--- a/src/mailman/core/system.py
+++ b/src/mailman/core/system.py
@@ -26,7 +26,9 @@ __all__ = [
import sys
+
from zope.interface import implements
+from zope.location.interfaces import ILocation
from mailman import version
from mailman.interfaces.system import ISystem
@@ -34,14 +36,16 @@ from mailman.interfaces.system import ISystem
class System:
- implements(ISystem)
+ implements(ISystem, ILocation)
@property
def mailman_version(self):
+ """See `ISystem`."""
return version.MAILMAN_VERSION_FULL
@property
def python_version(self):
+ """See `ISystem`."""
return sys.version