Index: third_party/twisted_8_1/twisted/scripts/twistd.py |
diff --git a/third_party/twisted_8_1/twisted/scripts/twistd.py b/third_party/twisted_8_1/twisted/scripts/twistd.py |
deleted file mode 100644 |
index 58472166e2477ed8e8811c27405f6f0b553a73fd..0000000000000000000000000000000000000000 |
--- a/third_party/twisted_8_1/twisted/scripts/twistd.py |
+++ /dev/null |
@@ -1,30 +0,0 @@ |
-# -*- test-case-name: twisted.test.test_twistd -*- |
-# Copyright (c) 2001-2008 Twisted Matrix Laboratories. |
-# See LICENSE for details. |
- |
-""" |
-The Twisted Daemon: platform-independent interface. |
- |
-@author: U{Christopher Armstrong<mailto:radix@twistedmatrix.com>} |
-""" |
- |
-from twisted.application import app |
- |
-from twisted.python.runtime import platformType |
-if platformType == "win32": |
- from twisted.scripts._twistw import ServerOptions, \ |
- WindowsApplicationRunner as _SomeApplicationRunner |
-else: |
- from twisted.scripts._twistd_unix import ServerOptions, \ |
- UnixApplicationRunner as _SomeApplicationRunner |
- |
- |
-def runApp(config): |
- _SomeApplicationRunner(config).run() |
- |
- |
-def run(): |
- app.run(runApp, ServerOptions) |
- |
- |
-__all__ = ['run', 'runApp'] |