2525def register_event (* names ):
2626 """Register event (or events) on the :ref:`global-dispatcher`
2727
28- .. seealso:: :meth:`.dispatcher. Dispatcher.register_event`
28+ .. seealso:: :meth:`.Dispatcher.register_event`
2929 .. versionadded:: 0.2.2
3030 """
3131 _GLOBAL_DISPATCHER .register_event (* names )
@@ -34,31 +34,31 @@ def register_event(*names):
3434def bind (** kwargs ):
3535 """Subscribe callbacks to events on the :ref:`global-dispatcher`
3636
37- .. seealso:: :meth:`.dispatcher. Dispatcher.bind`
37+ .. seealso:: :meth:`.Dispatcher.bind`
3838 .. versionadded:: 0.2.2
3939 """
4040 _GLOBAL_DISPATCHER .bind (** kwargs )
4141
4242def unbind (* args ):
4343 """Unbind callbacks from events on the :ref:`global-dispatcher`
4444
45- .. seealso:: :meth:`.dispatcher. Dispatcher.unbind`
45+ .. seealso:: :meth:`.Dispatcher.unbind`
4646 .. versionadded:: 0.2.2
4747 """
4848 _GLOBAL_DISPATCHER .unbind (* args )
4949
5050def bind_async (loop , ** kwargs ):
5151 """Bind async callbacks to events on the :ref:`global-dispatcher`
5252
53- .. seealso:: :meth:`.dispatcher. Dispatcher.bind_async`
53+ .. seealso:: :meth:`.Dispatcher.bind_async`
5454 .. versionadded:: 0.2.2
5555 """
5656 _GLOBAL_DISPATCHER .bind_async (loop , ** kwargs )
5757
5858def emit (name , * args , ** kwargs ):
5959 """Dispatch the event with the given *name* on the :ref:`global-dispatcher`
6060
61- .. seealso:: :meth:`.dispatcher. Dispatcher.emit`
61+ .. seealso:: :meth:`.Dispatcher.emit`
6262 .. versionadded:: 0.2.2
6363 """
6464 return _GLOBAL_DISPATCHER .emit (name , * args , ** kwargs )
@@ -67,7 +67,7 @@ def get_dispatcher_event(name):
6767 """Retrieve the :class:`~.dispatch.Event` object by the given name
6868 from the :ref:`global-dispatcher`
6969
70- .. seealso:: :meth:`.dispatcher. Dispatcher.get_dispatcher_event`
70+ .. seealso:: :meth:`.Dispatcher.get_dispatcher_event`
7171 .. versionadded:: 0.2.2
7272 """
7373 return _GLOBAL_DISPATCHER .get_dispatcher_event (name )
0 commit comments