This file is indexed.

/usr/share/doc/pyro4-doc/html/_sources/api/core.txt is in pyro4-doc 4.23-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
:mod:`Pyro4.core` --- core Pyro logic
=====================================

.. automodule:: Pyro4.core
    :members: URI, Daemon, DaemonObject, callback, batch, async

.. autoclass:: Proxy
    :members:

    .. py:attribute:: _pyroTimeout

        The timeout in seconds for calls on this proxy. Defaults to ``None``.
        If the timeout expires before the remote method call returns,
        Pyro will raise a :exc:`Pyro4.errors.TimeoutError`.

    .. py:attribute:: _pyroOneway

        A set of attribute names to be called as one-way method calls.
        This means the client won't wait for a response from the server
        while it is processing the call. Their return value is always ``None``.