Index: third_party/twisted_8_1/twisted/__init__.py |
diff --git a/third_party/twisted_8_1/twisted/__init__.py b/third_party/twisted_8_1/twisted/__init__.py |
deleted file mode 100644 |
index 9fa050d26d705bd53b2c5ea42ab2f98fa59848c6..0000000000000000000000000000000000000000 |
--- a/third_party/twisted_8_1/twisted/__init__.py |
+++ /dev/null |
@@ -1,24 +0,0 @@ |
-# -*- test-case-name: twisted -*- |
- |
-# Copyright (c) 2001-2004 Twisted Matrix Laboratories. |
-# See LICENSE for details. |
- |
- |
-""" |
-Twisted: The Framework Of Your Internet. |
-""" |
- |
-# Ensure the user is running the version of python we require. |
-import sys |
-if not hasattr(sys, "version_info") or sys.version_info < (2,3): |
- raise RuntimeError("Twisted requires Python 2.3 or later.") |
-del sys |
- |
-# Ensure compat gets imported |
-from twisted.python import compat |
-del compat |
- |
-# setup version |
-from twisted._version import version |
-__version__ = version.short() |
- |