This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Amery
Recipients Amery, docs@python
Date 2017-12-18.10:17:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1513592247.3.0.213398074469.issue32362@psf.upfronthosting.co.za>
In-reply-to
Content
https://docs.python.org/3/library/multiprocessing.html#multiprocessing.Connection purports to document the multiprocessing.Connection class. There's no such thing:

Python 3.6.1 (v3.6.1:69c0db5050, Mar 21 2017, 01:21:04) 
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import multiprocessing
>>> multiprocessing.Connection
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: module 'multiprocessing' has no attribute 'Connection'

I think it should be multiprocessing.connection.Connection?
History
Date User Action Args
2017-12-18 10:17:27Amerysetrecipients: + Amery, docs@python
2017-12-18 10:17:27Amerysetmessageid: <1513592247.3.0.213398074469.issue32362@psf.upfronthosting.co.za>
2017-12-18 10:17:27Amerylinkissue32362 messages
2017-12-18 10:17:26Amerycreate