Giter Site home page Giter Site logo

Comments (2)

auvipy avatar auvipy commented on June 10, 2024

OK thanks, will check the warnings

from billiard.

kloczek avatar kloczek commented on June 10, 2024

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

from billiard.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.