docs: more hyperlinks

new-serialization
David Wilson 5 years ago
parent d75c9cffc3
commit 8cbaa98ff9

@ -901,9 +901,9 @@ class CallSpec(object):
class PollPoller(mitogen.core.Poller): class PollPoller(mitogen.core.Poller):
""" """
Poller based on the POSIX poll(2) interface. Not available on some versions Poller based on the POSIX :linux:man2:`poll` interface. Not available on
of OS X, otherwise it is the preferred poller for small FD counts, as there some versions of OS X, otherwise it is the preferred poller for small FD
is no setup/teardown/configuration system call overhead. counts, as there is no setup/teardown/configuration system call overhead.
""" """
SUPPORTED = hasattr(select, 'poll') SUPPORTED = hasattr(select, 'poll')
_repr = 'PollPoller()' _repr = 'PollPoller()'
@ -949,7 +949,7 @@ class PollPoller(mitogen.core.Poller):
class KqueuePoller(mitogen.core.Poller): class KqueuePoller(mitogen.core.Poller):
""" """
Poller based on the FreeBSD/Darwin kqueue(2) interface. Poller based on the FreeBSD/Darwin :freebsd:man2:`kqueue` interface.
""" """
SUPPORTED = hasattr(select, 'kqueue') SUPPORTED = hasattr(select, 'kqueue')
_repr = 'KqueuePoller()' _repr = 'KqueuePoller()'
@ -1027,7 +1027,7 @@ class KqueuePoller(mitogen.core.Poller):
class EpollPoller(mitogen.core.Poller): class EpollPoller(mitogen.core.Poller):
""" """
Poller based on the Linux epoll(2) interface. Poller based on the Linux :linux:man2:`epoll` interface.
""" """
SUPPORTED = hasattr(select, 'epoll') SUPPORTED = hasattr(select, 'epoll')
_repr = 'EpollPoller()' _repr = 'EpollPoller()'

Loading…
Cancel
Save