Index: third_party/twisted_8_1/twisted/words/toctap.py |
diff --git a/third_party/twisted_8_1/twisted/words/toctap.py b/third_party/twisted_8_1/twisted/words/toctap.py |
deleted file mode 100644 |
index 245e4d579aab57a32b80a42a1a8260ddef75b00d..0000000000000000000000000000000000000000 |
--- a/third_party/twisted_8_1/twisted/words/toctap.py |
+++ /dev/null |
@@ -1,20 +0,0 @@ |
- |
-# Copyright (c) 2001-2004 Twisted Matrix Laboratories. |
-# See LICENSE for details. |
- |
- |
-""" |
-Support module for making TOC servers with mktap. |
-""" |
- |
-from twisted.words.protocols import toc |
-from twisted.python import usage |
-from twisted.application import strports |
- |
-class Options(usage.Options): |
- synopsis = "Usage: mktap toc [-p <port>]" |
- optParameters = [["port", "p", "5190"]] |
- longdesc = "Makes a TOC server." |
- |
-def makeService(config): |
- return strports.service(config['port'], toc.TOCFactory()) |