-
Notifications
You must be signed in to change notification settings - Fork 252
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
4.0.0: sphinx warnings (mainly reference target not found
)
#366
Comments
OK thanks, will check the warnings |
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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:
The text was updated successfully, but these errors were encountered: