Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

4.0.0: sphinx warnings (mainly reference target not found) #366

Open
kloczek opened this issue Apr 24, 2022 · 2 comments
Open

4.0.0: sphinx warnings (mainly reference target not found) #366

kloczek opened this issue Apr 24, 2022 · 2 comments

Comments

@kloczek
Copy link

kloczek commented Apr 24, 2022

On building my packages I'm using sphinx-build command with -n switch which shows warmings about missing references. These are not critical issues.
I would recommend use that switch always 😄
Here is the output with warnings:

+ /usr/bin/sphinx-build -n -T -b man Doc build/sphinx/man
Running Sphinx v4.5.0
making output directory... done
WARNING: html_static_path entry 'static' does not exist
building [mo]: targets for 0 po files that are out of date
building [man]: all manpages
updating environment: [new config] 3 added, 0 changed, 0 removed
reading sources... [100%] library/multiprocessing
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:21: ERROR: Unknown interpreted text role "issue".
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:451: ERROR: Unknown directive type "doctest".

.. doctest::

    >>> import multiprocessing, time, signal
    >>> p = multiprocessing.Process(target=time.sleep, args=(1000,))
    >>> print(p, p.is_alive())
    <Process(Process-1, initial)> False
    >>> p.start()
    >>> print(p, p.is_alive())
    <Process(Process-1, started)> True
    >>> p.terminate()
    >>> time.sleep(0.1)
    >>> print(p, p.is_alive())
    <Process(Process-1, stopped[SIGTERM])> False
    >>> p.exitcode == -signal.SIGTERM
    True
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:838: ERROR: Unknown directive type "doctest".

.. doctest::

    >>> from multiprocessing import Pipe
    >>> a, b = Pipe()
    >>> a.send([1, 'hello', None])
    >>> b.recv()
    [1, 'hello', None]
    >>> b.send_bytes(b'thank you')
    >>> a.recv_bytes()
    b'thank you'
    >>> import array
    >>> arr1 = array.array('i', range(5))
    >>> arr2 = array.array('i', [0] * 10)
    >>> a.send_bytes(arr1)
    >>> count = b.recv_bytes_into(arr2)
    >>> assert count == len(arr1) * arr1.itemsize
    >>> arr2
    array('i', [0, 1, 2, 3, 4, 0, 0, 0, 0, 0])
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1363: ERROR: Unknown directive type "doctest".

.. doctest::

   >>> manager = multiprocessing.Manager()
   >>> Global = manager.Namespace()
   >>> Global.x = 10
   >>> Global.y = 'hello'
   >>> Global._z = 12.3    # this is an attribute of the proxy
   >>> print(Global)
   Namespace(x=10, y='hello')
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1475: ERROR: Unknown directive type "doctest".

.. doctest::

   >>> from multiprocessing import Manager
   >>> manager = Manager()
   >>> l = manager.list([i*i for i in range(10)])
   >>> print(l)
   [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
   >>> print(repr(l))
   <ListProxy object, typeid 'list' at 0x...>
   >>> l[4]
   16
   >>> l[2:5]
   [4, 9, 16]
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1498: ERROR: Unknown directive type "doctest".

.. doctest::

   >>> a = manager.list()
   >>> b = manager.list()
   >>> a.append(b)         # referent of a now contains referent of b
   >>> print(a, b)
   [[]] []
   >>> b.append('hello')
   >>> print(a, b)
   [['hello']] ['hello']
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1514: ERROR: Unknown directive type "doctest".

.. doctest::

    >>> manager.list([1,2,3]) == [1,2,3]
    False
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1553: ERROR: Unknown directive type "doctest".

.. doctest::

   >>> l = manager.list(range(10))
   >>> l._callmethod('__len__')
   10
   >>> l._callmethod('__getslice__', (2, 7))   # equiv to `l[2:7]`
   [2, 3, 4, 5, 6]
   >>> l._callmethod('__getitem__', (20,))     # equiv to `l[20]`
   Traceback (most recent call last):
   ...
   IndexError: list index out of range
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2305: ERROR: Unknown interpreted text role "issue".
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2305: ERROR: Unknown interpreted text role "issue".
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2305: ERROR: Unknown interpreted text role "issue".
looking for now-outdated files... none found
pickling environment... done
checking consistency... done
writing... python-billiard.3 { library/multiprocessing glossary } /home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:11: WARNING: py:mod reference target not found: threading
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:21: WARNING: py:mod reference target not found: multiprocessing.synchronize
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:29: WARNING: py:class reference target not found: multiprocessing.Pool
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:59: WARNING: py:class reference target not found: threading.Thread
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:108: WARNING: py:class reference target not found: Queue.Queue
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:123: WARNING: undefined label: threaded-imports
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:157: WARNING: py:mod reference target not found: threading
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:216: WARNING: py:mod reference target not found: array
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:227: WARNING: py:func reference target not found: Manager
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:231: WARNING: py:func reference target not found: Manager
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:231: WARNING: py:class reference target not found: Namespace
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:272: WARNING: py:class reference target not found: multiprocessing.pool.Pool
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:293: WARNING: py:mod reference target not found: threading
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:302: WARNING: py:class reference target not found: threading.Thread
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:306: WARNING: py:class reference target not found: threading.Thread
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:321: WARNING: py:meth reference target not found: Process.__init__
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:386: WARNING: py:class reference target not found: Threading.Thread
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:404: WARNING: py:func reference target not found: os.random
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:422: WARNING: py:mod reference target not found: select
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:430: WARNING: c:func reference target not found: TerminateProcess
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:445: WARNING: py:attr reference target not found: exit_code
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:487: WARNING: py:class reference target not found: Queue.Queue
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:487: WARNING: py:meth reference target not found: Queue.Queue.task_done
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:487: WARNING: py:meth reference target not found: Queue.Queue.join
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:487: WARNING: py:class reference target not found: queue.Queue
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:503: WARNING: py:exc reference target not found: Queue.Empty
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:503: WARNING: py:exc reference target not found: Queue.Full
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:503: WARNING: py:mod reference target not found: queue
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:511: WARNING: py:func reference target not found: os.kill
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:518: WARNING: py:meth reference target not found: JoinableQueue.cancel_join_thread
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:551: WARNING: py:exc reference target not found: Queue.Empty
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:551: WARNING: py:exc reference target not found: Queue.Full
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:551: WARNING: py:mod reference target not found: Queue
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:554: WARNING: py:class reference target not found: Queue.Queue
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:554: WARNING: py:meth reference target not found: Queue.Queue.task_done
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:554: WARNING: py:meth reference target not found: Queue.Queue.join
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:577: WARNING: py:exc reference target not found: queue.Full
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:577: WARNING: py:exc reference target not found: queue.Full
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:592: WARNING: py:exc reference target not found: queue.Empty
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:592: WARNING: py:exc reference target not found: queue.Empty
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:605: WARNING: py:class reference target not found: queue.Queue
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:662: WARNING: py:meth reference target not found: Queue.join
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:674: WARNING: py:meth reference target not found: Queue.join
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:700: WARNING: py:func reference target not found: threading.current_thread
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:728: WARNING: py:data reference target not found: sys.executable
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:739: WARNING: py:func reference target not found: threading.active_count
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:739: WARNING: py:func reference target not found: threading.enumerate
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:739: WARNING: py:func reference target not found: threading.settrace
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:739: WARNING: py:func reference target not found: threading.setprofile
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:739: WARNING: py:class reference target not found: threading.Timer
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:739: WARNING: py:class reference target not found: threading.local
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:879: WARNING: py:mod reference target not found: threading
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:888: WARNING: py:class reference target not found: threading.BoundedSemaphore
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:895: WARNING: py:class reference target not found: threading.Condition
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:901: WARNING: py:meth reference target not found: wait_for
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:905: WARNING: py:class reference target not found: threading.Event
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:915: WARNING: py:class reference target not found: threading.Lock
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:919: WARNING: py:class reference target not found: threading.RLock
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:923: WARNING: py:class reference target not found: threading.Semaphore
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:932: WARNING: py:meth reference target not found: BoundedSemaphore.acquire
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:932: WARNING: py:meth reference target not found: Lock.acquire
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:932: WARNING: py:meth reference target not found: RLock.acquire
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:932: WARNING: py:meth reference target not found: Semaphore.acquire
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:932: WARNING: py:meth reference target not found: Condition.acquire
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:932: WARNING: py:meth reference target not found: Condition.wait
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:938: WARNING: py:mod reference target not found: threading
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:942: WARNING: py:mod reference target not found: ctypes
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:950: WARNING: py:mod reference target not found: ctypes
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:953: WARNING: py:mod reference target not found: array
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:971: WARNING: py:mod reference target not found: array
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:987: WARNING: py:data reference target not found: ctypes.c_char
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:997: WARNING: py:mod reference target not found: ctypes
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1013: WARNING: py:mod reference target not found: array
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1028: WARNING: py:mod reference target not found: array
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1036: WARNING: py:data reference target not found: ctypes.c_char
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1036: WARNING: py:mod reference target not found: ctypes
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1046: WARNING: py:class reference target not found: Lock
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1046: WARNING: py:class reference target not found: RLock
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1061: WARNING: py:class reference target not found: Lock
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1061: WARNING: py:class reference target not found: RLock
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1081: WARNING: py:meth reference target not found: get_obj
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1081: WARNING: py:meth reference target not found: get_lock
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1089: WARNING: py:class reference target not found: ctypes.Structure
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1196: WARNING: py:class reference target not found: Server
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1196: WARNING: py:class reference target not found: Server
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1196: WARNING: py:meth reference target not found: serve_forever
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1205: WARNING: py:class reference target not found: Server
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1230: WARNING: py:meth reference target not found: from_address
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1239: WARNING: py:meth reference target not found: BaseProxy._callMethod
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1239: WARNING: py:attr reference target not found: proxytype._exposed_
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1239: WARNING: py:meth reference target not found: __call__
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1248: WARNING: py:attr reference target not found: proxytype._method_to_typeid_
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1268: WARNING: py:func reference target not found: multiprocessing.Manager
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1276: WARNING: py:class reference target not found: threading.BoundedSemaphore
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1281: WARNING: py:class reference target not found: threading.Condition
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1284: WARNING: py:class reference target not found: threading.Lock
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1284: WARNING: py:class reference target not found: threading.RLock
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1288: WARNING: py:meth reference target not found: wait_for
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1292: WARNING: py:class reference target not found: threading.Event
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1296: WARNING: py:class reference target not found: threading.Lock
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1304: WARNING: py:class reference target not found: Queue.Queue
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1308: WARNING: py:class reference target not found: threading.RLock
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1312: WARNING: py:class reference target not found: threading.Semaphore
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1489: WARNING: py:func reference target not found: str
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1489: WARNING: py:func reference target not found: repr
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1543: WARNING: py:exc reference target not found: RemoteError
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1596: WARNING: py:class reference target not found: Pool
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1605: WARNING: py:func reference target not found: cpu_count
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1618: WARNING: py:class reference target not found: Pool
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1618: WARNING: py:class reference target not found: Pool
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1683: WARNING: py:exc reference target not found: multiprocessing.TimeoutError
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1731: WARNING: py:meth reference target not found: Pool.apply_async
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1731: WARNING: py:meth reference target not found: Pool.map_async
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1736: WARNING: py:exc reference target not found: multiprocessing.TimeoutError
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1787: WARNING: py:class reference target not found: Connection
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1787: WARNING: py:func reference target not found: Pipe
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1790: WARNING: py:mod reference target not found: hmac
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1843: WARNING: py:func reference target not found: tempfile.mkstemp
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1854: WARNING: py:meth reference target not found: listen
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1871: WARNING: py:class reference target not found: Connection
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1903: WARNING: py:class reference target not found: socket.socket
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1910: WARNING: py:func reference target not found: select.select
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:1916: WARNING: py:meth reference target not found: fileno
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2036: WARNING: py:meth reference target not found: Connection.recv
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2036: WARNING: py:mod reference target not found: hmac
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2054: WARNING: py:func reference target not found: os.urandom
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2060: WARNING: py:mod reference target not found: logging
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2070: WARNING: py:data reference target not found: logging.NOTSET
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2081: WARNING: py:data reference target not found: sys.stderr
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2101: WARNING: py:const reference target not found: SUBWARNING
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2101: WARNING: py:const reference target not found: SUBDEBUG
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2114: WARNING: py:mod reference target not found: logging
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2116: WARNING: py:const reference target not found: SUBDEBUG
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2145: WARNING: py:mod reference target not found: threading
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2166: WARNING: py:mod reference target not found: threading
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2183: WARNING: py:func reference target not found: active_children
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2183: WARNING: py:meth reference target not found: Process.is_alive
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2200: WARNING: py:meth reference target not found: Process.terminate
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2205: WARNING: py:meth reference target not found: Process.terminate
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2210: WARNING: py:meth reference target not found: Queue.cancel_join_thread
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2274: WARNING: py:data reference target not found: sys.stdin
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2280: WARNING: py:meth reference target not found: multiprocessing.Process._bootstrap
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2286: WARNING: py:func reference target not found: sys.stdin
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2286: WARNING: py:func reference target not found: close
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2310: WARNING: py:func reference target not found: os.fork
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2314: WARNING: py:meth reference target not found: Process.__init__
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2319: WARNING: py:class reference target not found: Process
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2319: WARNING: py:meth reference target not found: Process.start
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2324: WARNING: py:meth reference target not found: Process.start
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2382: WARNING: py:class reference target not found: Pool
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2400: WARNING: py:class reference target not found: http.server.SimpleHTTPRequestHandler
/home/tkloczko/rpmbuild/BUILD/billiard-4.0.0/Doc/library/multiprocessing.rst:2407: WARNING: py:mod reference target not found: threading
done
build succeeded, 164 warnings.
@auvipy
Copy link
Member

auvipy commented Apr 24, 2022

OK thanks, will check the warnings

@kloczek
Copy link
Author

kloczek commented Dec 14, 2022

Updated output for 4.1.0:

+ /usr/bin/sphinx-build -n -T -b man Doc build/sphinx/man
Running Sphinx v5.3.0
making output directory... done
WARNING: html_static_path entry 'static' does not exist
building [mo]: targets for 0 po files that are out of date
building [man]: all manpages
updating environment: [new config] 3 added, 0 changed, 0 removed
reading sources... [100%] library/multiprocessing
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:21: ERROR: Unknown interpreted text role "issue".
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:150: ERROR: Unknown directive type "doctest".

.. doctest::

    >>> import multiprocessing, time, signal
    >>> p = multiprocessing.Process(target=time.sleep, args=(1000,))
    >>> print(p, p.is_alive())
    <Process(Process-1, initial)> False
    >>> p.start()
    >>> print(p, p.is_alive())
    <Process(Process-1, started)> True
    >>> p.terminate()
    >>> time.sleep(0.1)
    >>> print(p, p.is_alive())
    <Process(Process-1, stopped[SIGTERM])> False
    >>> p.exitcode == -signal.SIGTERM
    True
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:838: ERROR: Unknown directive type "doctest".

.. doctest::

    >>> from multiprocessing import Pipe
    >>> a, b = Pipe()
    >>> a.send([1, 'hello', None])
    >>> b.recv()
    [1, 'hello', None]
    >>> b.send_bytes(b'thank you')
    >>> a.recv_bytes()
    b'thank you'
    >>> import array
    >>> arr1 = array.array('i', range(5))
    >>> arr2 = array.array('i', [0] * 10)
    >>> a.send_bytes(arr1)
    >>> count = b.recv_bytes_into(arr2)
    >>> assert count == len(arr1) * arr1.itemsize
    >>> arr2
    array('i', [0, 1, 2, 3, 4, 0, 0, 0, 0, 0])
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1363: ERROR: Unknown directive type "doctest".

.. doctest::

   >>> manager = multiprocessing.Manager()
   >>> Global = manager.Namespace()
   >>> Global.x = 10
   >>> Global.y = 'hello'
   >>> Global._z = 12.3    # this is an attribute of the proxy
   >>> print(Global)
   Namespace(x=10, y='hello')
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1475: ERROR: Unknown directive type "doctest".

.. doctest::

   >>> from multiprocessing import Manager
   >>> manager = Manager()
   >>> l = manager.list([i*i for i in range(10)])
   >>> print(l)
   [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
   >>> print(repr(l))
   <ListProxy object, typeid 'list' at 0x...>
   >>> l[4]
   16
   >>> l[2:5]
   [4, 9, 16]
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1498: ERROR: Unknown directive type "doctest".

.. doctest::

   >>> a = manager.list()
   >>> b = manager.list()
   >>> a.append(b)         # referent of a now contains referent of b
   >>> print(a, b)
   [[]] []
   >>> b.append('hello')
   >>> print(a, b)
   [['hello']] ['hello']
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1514: ERROR: Unknown directive type "doctest".

.. doctest::

    >>> manager.list([1,2,3]) == [1,2,3]
    False
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:27: ERROR: Unknown directive type "doctest".

.. doctest::

   >>> l = manager.list(range(10))
   >>> l._callmethod('__len__')
   10
   >>> l._callmethod('__getslice__', (2, 7))   # equiv to `l[2:7]`
   [2, 3, 4, 5, 6]
   >>> l._callmethod('__getitem__', (20,))     # equiv to `l[20]`
   Traceback (most recent call last):
   ...
   IndexError: list index out of range
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2305: ERROR: Unknown interpreted text role "issue".
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2305: ERROR: Unknown interpreted text role "issue".
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2305: ERROR: Unknown interpreted text role "issue".
looking for now-outdated files... none found
pickling environment... done
checking consistency... done
writing... python-billiard.3 { library/multiprocessing glossary } /home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:11: WARNING: py:mod reference target not found: threading
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:21: WARNING: py:mod reference target not found: multiprocessing.synchronize
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:29: WARNING: py:class reference target not found: multiprocessing.Pool
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:59: WARNING: py:class reference target not found: threading.Thread
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:108: WARNING: py:class reference target not found: Queue.Queue
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:123: WARNING: undefined label: 'threaded-imports'
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:157: WARNING: py:mod reference target not found: threading
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:216: WARNING: py:mod reference target not found: array
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:227: WARNING: py:func reference target not found: Manager
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:231: WARNING: py:func reference target not found: Manager
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:231: WARNING: py:class reference target not found: Namespace
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:272: WARNING: py:class reference target not found: multiprocessing.pool.Pool
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:293: WARNING: py:mod reference target not found: threading
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:class reference target not found: threading.Thread
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:5: WARNING: py:class reference target not found: threading.Thread
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:20: WARNING: py:meth reference target not found: Process.__init__
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:85: WARNING: py:class reference target not found: Threading.Thread
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:3: WARNING: py:func reference target not found: os.random
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:8: WARNING: py:mod reference target not found: select
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: c:func reference target not found: TerminateProcess
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:144: WARNING: py:attr reference target not found: exit_code
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:487: WARNING: py:class reference target not found: Queue.Queue
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:487: WARNING: py:meth reference target not found: Queue.Queue.task_done
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:487: WARNING: py:meth reference target not found: Queue.Queue.join
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:487: WARNING: py:class reference target not found: queue.Queue
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:503: WARNING: py:exc reference target not found: Queue.Empty
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:503: WARNING: py:exc reference target not found: Queue.Full
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:503: WARNING: py:mod reference target not found: queue
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:511: WARNING: py:func reference target not found: os.kill
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:518: WARNING: py:meth reference target not found: JoinableQueue.cancel_join_thread
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:5: WARNING: py:exc reference target not found: Queue.Empty
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:5: WARNING: py:exc reference target not found: Queue.Full
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:5: WARNING: py:mod reference target not found: Queue
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:8: WARNING: py:class reference target not found: Queue.Queue
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:8: WARNING: py:meth reference target not found: Queue.Queue.task_done
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:8: WARNING: py:meth reference target not found: Queue.Queue.join
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:exc reference target not found: queue.Full
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:exc reference target not found: queue.Full
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:exc reference target not found: queue.Empty
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:exc reference target not found: queue.Empty
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:59: WARNING: py:class reference target not found: queue.Queue
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:6: WARNING: py:meth reference target not found: Queue.join
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:3: WARNING: py:meth reference target not found: Queue.join
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:3: WARNING: py:func reference target not found: threading.current_thread
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:data reference target not found: sys.executable
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:739: WARNING: py:func reference target not found: threading.active_count
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:739: WARNING: py:func reference target not found: threading.enumerate
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:739: WARNING: py:func reference target not found: threading.settrace
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:739: WARNING: py:func reference target not found: threading.setprofile
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:739: WARNING: py:class reference target not found: threading.Timer
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:739: WARNING: py:class reference target not found: threading.local
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:879: WARNING: py:mod reference target not found: threading
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:class reference target not found: threading.BoundedSemaphore
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:class reference target not found: threading.Condition
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:7: WARNING: py:meth reference target not found: wait_for
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:class reference target not found: threading.Event
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:class reference target not found: threading.Lock
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:class reference target not found: threading.RLock
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:class reference target not found: threading.Semaphore
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:932: WARNING: py:meth reference target not found: BoundedSemaphore.acquire
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:932: WARNING: py:meth reference target not found: Lock.acquire
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:932: WARNING: py:meth reference target not found: RLock.acquire
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:932: WARNING: py:meth reference target not found: Semaphore.acquire
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:932: WARNING: py:meth reference target not found: Condition.acquire
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:932: WARNING: py:meth reference target not found: Condition.wait
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:938: WARNING: py:mod reference target not found: threading
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:942: WARNING: py:mod reference target not found: ctypes
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:mod reference target not found: ctypes
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:4: WARNING: py:mod reference target not found: array
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:4: WARNING: py:mod reference target not found: array
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:20: WARNING: py:data reference target not found: ctypes.c_char
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:997: WARNING: py:mod reference target not found: ctypes
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:3: WARNING: py:mod reference target not found: array
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:3: WARNING: py:mod reference target not found: array
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:11: WARNING: py:data reference target not found: ctypes.c_char
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:11: WARNING: py:mod reference target not found: ctypes
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:5: WARNING: py:class reference target not found: Lock
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:5: WARNING: py:class reference target not found: RLock
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:5: WARNING: py:class reference target not found: Lock
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:5: WARNING: py:class reference target not found: RLock
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:5: WARNING: py:meth reference target not found: get_obj
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:5: WARNING: py:meth reference target not found: get_lock
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1089: WARNING: py:class reference target not found: ctypes.Structure
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:class reference target not found: Server
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:class reference target not found: Server
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:meth reference target not found: serve_forever
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:10: WARNING: py:class reference target not found: Server
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:7: WARNING: py:meth reference target not found: from_address
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:16: WARNING: py:meth reference target not found: BaseProxy._callMethod
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:16: WARNING: py:attr reference target not found: proxytype._exposed_
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:16: WARNING: py:meth reference target not found: __call__
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:25: WARNING: py:attr reference target not found: proxytype._method_to_typeid_
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:func reference target not found: multiprocessing.Manager
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:class reference target not found: threading.BoundedSemaphore
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:class reference target not found: threading.Condition
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:4: WARNING: py:class reference target not found: threading.Lock
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:4: WARNING: py:class reference target not found: threading.RLock
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:8: WARNING: py:meth reference target not found: wait_for
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:class reference target not found: threading.Event
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:class reference target not found: threading.Lock
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:class reference target not found: Queue.Queue
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:class reference target not found: threading.RLock
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:class reference target not found: threading.Semaphore
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1489: WARNING: py:func reference target not found: str
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1489: WARNING: py:func reference target not found: repr
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:17: WARNING: py:exc reference target not found: RemoteError
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1596: WARNING: py:class reference target not found: Pool
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:5: WARNING: py:func reference target not found: cpu_count
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:18: WARNING: py:class reference target not found: Pool
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:18: WARNING: py:class reference target not found: Pool
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:8: WARNING: py:exc reference target not found: multiprocessing.TimeoutError
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:meth reference target not found: Pool.apply_async
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:meth reference target not found: Pool.map_async
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:exc reference target not found: multiprocessing.TimeoutError
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1787: WARNING: py:class reference target not found: Connection
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1787: WARNING: py:func reference target not found: Pipe
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1790: WARNING: py:mod reference target not found: hmac
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:13: WARNING: py:func reference target not found: tempfile.mkstemp
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:24: WARNING: py:meth reference target not found: listen
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:class reference target not found: Connection
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:10: WARNING: py:class reference target not found: socket.socket
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:17: WARNING: py:func reference target not found: select.select
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:23: WARNING: py:meth reference target not found: fileno
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2036: WARNING: py:meth reference target not found: Connection.recv
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2036: WARNING: py:mod reference target not found: hmac
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2054: WARNING: py:func reference target not found: os.urandom
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2060: WARNING: py:mod reference target not found: logging
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:4: WARNING: py:data reference target not found: logging.NOTSET
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:1: WARNING: py:data reference target not found: sys.stderr
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2101: WARNING: py:const reference target not found: SUBWARNING
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2101: WARNING: py:const reference target not found: SUBDEBUG
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2114: WARNING: py:mod reference target not found: logging
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2116: WARNING: py:const reference target not found: SUBDEBUG
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2145: WARNING: py:mod reference target not found: threading
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2166: WARNING: py:mod reference target not found: threading
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2183: WARNING: py:func reference target not found: active_children
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2183: WARNING: py:meth reference target not found: Process.is_alive
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2200: WARNING: py:meth reference target not found: Process.terminate
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2205: WARNING: py:meth reference target not found: Process.terminate
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2210: WARNING: py:meth reference target not found: Queue.cancel_join_thread
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2274: WARNING: py:data reference target not found: sys.stdin
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2280: WARNING: py:meth reference target not found: multiprocessing.Process._bootstrap
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2286: WARNING: py:func reference target not found: sys.stdin
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2286: WARNING: py:func reference target not found: close
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2310: WARNING: py:func reference target not found: os.fork
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2314: WARNING: py:meth reference target not found: Process.__init__
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2319: WARNING: py:class reference target not found: Process
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2319: WARNING: py:meth reference target not found: Process.start
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2324: WARNING: py:meth reference target not found: Process.start
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2382: WARNING: py:class reference target not found: Pool
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2400: WARNING: py:class reference target not found: http.server.SimpleHTTPRequestHandler
/home/tkloczko/rpmbuild/BUILD/billiard-4.1.0/Doc/library/multiprocessing.rst:2407: WARNING: py:mod reference target not found: threading
done
build succeeded, 164 warnings.

You can peak on fixes that kind of issues in other projects
latchset/jwcrypto#289
click-contrib/sphinx-click@abc31069
latchset/jwcrypto#289
RDFLib/rdflib-sqlalchemy#95
sissaschool/elementpath@bf869d9e
jaraco/cssutils#21
pywbem/pywbem#2895
sissaschool/xmlschema@42ea98f2
RDFLib/rdflib#2036
frostming/unearth#14
pypa/distlib@98b9b89f

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants