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

Side by Side Diff: third_party/twisted_8_1/twisted/internet/qtreactor.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 try:
2 # 'import qtreactor' would have imported this file instead of the
3 # top-level qtreactor. __import__ does the right thing
4 # (kids, don't repeat this at home)
5 install = __import__('qtreactor').install
6 except ImportError:
7 from twisted.plugins.qtreactor_stub import errorMessage
8 raise ImportError(errorMessage)
9 else:
10 import warnings
11 warnings.warn("Please use qtreactor instead of twisted.internet.qtreactor",
12 category=DeprecationWarning)
13
14 __all__ = ['install']
15
OLDNEW
« no previous file with comments | « third_party/twisted_8_1/twisted/internet/pyuisupport.py ('k') | third_party/twisted_8_1/twisted/internet/reactor.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698