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

Unified Diff: third_party/twisted_8_1/twisted/plugins/twisted_reactors.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/plugins/twisted_reactors.py
diff --git a/third_party/twisted_8_1/twisted/plugins/twisted_reactors.py b/third_party/twisted_8_1/twisted/plugins/twisted_reactors.py
deleted file mode 100644
index 428e96c407461d0a1f1cb2d4c16ea3cae46a47f6..0000000000000000000000000000000000000000
--- a/third_party/twisted_8_1/twisted/plugins/twisted_reactors.py
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright (c) 2006 Twisted Matrix Laboratories.
-# See LICENSE for details.
-
-from twisted.application.reactors import Reactor
-
-default = Reactor(
- 'default', 'twisted.internet.default',
- 'The best reactor for the current platform.')
-
-select = Reactor(
- 'select', 'twisted.internet.selectreactor', 'select(2)-based reactor.')
-wx = Reactor(
- 'wx', 'twisted.internet.wxreactor', 'wxPython integration reactor.')
-gtk = Reactor(
- 'gtk', 'twisted.internet.gtkreactor', 'Gtk1 integration reactor.')
-gtk2 = Reactor(
- 'gtk2', 'twisted.internet.gtk2reactor', 'Gtk2 integration reactor.')
-glib2 = Reactor(
- 'glib2', 'twisted.internet.glib2reactor',
- 'GLib2 event-loop integration reactor.')
-glade = Reactor(
- 'debug-gui', 'twisted.manhole.gladereactor',
- 'Semi-functional debugging/introspection reactor.')
-win32er = Reactor(
- 'win32', 'twisted.internet.win32eventreactor',
- 'Win32 WaitForMultipleObjects-based reactor.')
-poll = Reactor(
- 'poll', 'twisted.internet.pollreactor', 'poll(2)-based reactor.')
-epoll = Reactor(
- 'epoll', 'twisted.internet.epollreactor', 'epoll(4)-based reactor.')
-cf = Reactor(
- 'cf' , 'twisted.internet.cfreactor',
- 'CoreFoundation integration reactor.')
-kqueue = Reactor(
- 'kqueue', 'twisted.internet.kqreactor', 'kqueue(2)-based reactor.')
-iocp = Reactor(
- 'iocp', 'twisted.internet.iocpreactor',
- 'Win32 IO Completion Ports-based reactor.')
« no previous file with comments | « third_party/twisted_8_1/twisted/plugins/twisted_qtstub.py ('k') | third_party/twisted_8_1/twisted/plugins/twisted_socks.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698