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

Side by Side Diff: third_party/twisted_8_1/twisted/__init__.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # -*- test-case-name: twisted -*-
2
3 # Copyright (c) 2001-2004 Twisted Matrix Laboratories.
4 # See LICENSE for details.
5
6
7 """
8 Twisted: The Framework Of Your Internet.
9 """
10
11 # Ensure the user is running the version of python we require.
12 import sys
13 if not hasattr(sys, "version_info") or sys.version_info < (2,3):
14 raise RuntimeError("Twisted requires Python 2.3 or later.")
15 del sys
16
17 # Ensure compat gets imported
18 from twisted.python import compat
19 del compat
20
21 # setup version
22 from twisted._version import version
23 __version__ = version.short()
24
OLDNEW
« no previous file with comments | « third_party/twisted_8_1/twisted/README.google ('k') | third_party/twisted_8_1/twisted/_version.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698