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

Unified Diff: third_party/twisted_8_1/twisted/python/dispatch.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
« no previous file with comments | « third_party/twisted_8_1/twisted/python/deprecate.py ('k') | third_party/twisted_8_1/twisted/python/dist.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/twisted_8_1/twisted/python/dispatch.py
diff --git a/third_party/twisted_8_1/twisted/python/dispatch.py b/third_party/twisted_8_1/twisted/python/dispatch.py
deleted file mode 100644
index 4e286321731e979476b137d64bf2f984becf72e9..0000000000000000000000000000000000000000
--- a/third_party/twisted_8_1/twisted/python/dispatch.py
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright (c) 2001-2004 Twisted Matrix Laboratories.
-# See LICENSE for details.
-
-import warnings
-warnings.warn(
- "Create your own event dispatching mechanism, "
- "twisted.python.dispatch will soon be no more.",
- DeprecationWarning, 2)
-
-
-class EventDispatcher:
- """
- A global event dispatcher for events.
- I'm used for any events that need to span disparate objects in the client.
-
- I should only be used when one object needs to signal an object that it's
- not got a direct reference to (unless you really want to pass it through
- here, in which case I won't mind).
-
- I'm mainly useful for complex GUIs.
- """
-
- def __init__(self, prefix="event_"):
- self.prefix = prefix
- self.callbacks = {}
-
-
- def registerHandler(self, name, meth):
- self.callbacks.setdefault(name, []).append(meth)
-
-
- def autoRegister(self, obj):
- from twisted.python import reflect
- d = {}
- reflect.accumulateMethods(obj, d, self.prefix)
- for k,v in d.items():
- self.registerHandler(k, v)
-
-
- def publishEvent(self, name, *args, **kwargs):
- for cb in self.callbacks[name]:
- cb(*args, **kwargs)
« no previous file with comments | « third_party/twisted_8_1/twisted/python/deprecate.py ('k') | third_party/twisted_8_1/twisted/python/dist.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698