Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(317)

Unified Diff: third_party/twisted_8_1/twisted/scripts/twistd.py

Issue 12261012: Remove third_party/twisted_8_1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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']
« no previous file with comments | « third_party/twisted_8_1/twisted/scripts/trial.py ('k') | third_party/twisted_8_1/twisted/spread/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698