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.

classification
Title: multiprocessing module, example code error
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.1, Python 3.2, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: jnoller Nosy List: georg.brandl, hsmtkk, jnoller, orsenthil, sandro.tosi
Priority: normal Keywords: patch

Created on 2009-11-08 02:31 by hsmtkk, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
multiprocessing.rst.diff hsmtkk, 2009-11-08 02:31 patch to fix errors
7285.patch asksol, 2009-11-21 12:03 applies cleanly to trunk. review
issue7285-py3k.patch sandro.tosi, 2010-10-07 20:25
Messages (3)
msg95035 - (view) Author: Kouki Hashimoto (hsmtkk) Date: 2009-11-08 02:31
Example codes on multiprocessing module occur errors.
I attached the patch to fix these errors.

http://docs.python.org/dev/py3k/library/multiprocessing.html#module-
multiprocessing
"16.6.2.10. Listeners and Clients" section

Fix points are
1. Listener argument "authkey" must be a byte string
2. Client argument "authkey" must be a byte string
3. send_bytes argument must be a byte string

This is the server code listed on the section.
$ cat mpserver.py
from multiprocessing.connection import Listener
from array import array
address = ('localhost', 6000)     # family is deduced to be 'AF_INET'
listener = Listener(address, authkey='secret password')
conn = listener.accept()
print('connection accepted from', listener.last_accepted)
conn.send([2.25, None, 'junk', float])
conn.send_bytes('hello')
conn.send_bytes(array('i', [42, 1729]))
conn.close()
listener.close()

And the error is
$ python3.2 mpserver.py
Traceback (most recent call last):
  File "mpserver1.py", line 5, in <module>
    listener = Listener(address, authkey='secret password')
  File 
"/Users/kosmos/local/stow/py3k/lib/python3.2/multiprocessing/connection.
py", line 100, in __init__
    raise TypeError('authkey should be a byte string')
TypeError: authkey should be a byte string

My source code is svn revision 76151.
Regards.

---
Kouki Hashimoto
hsmtkk@gmail.com
msg118130 - (view) Author: Sandro Tosi (sandro.tosi) * (Python committer) Date: 2010-10-07 20:25
Hello,
i've verified that the problem still exists in an up-to-date py3k branch, and that the proposed patch indeed fixes the bug.

Since the patch no more applies cleanly, I've refreshed it, and also added additional information about authkey that it must be a byte string.

Regards,
Sandro
msg118307 - (view) Author: Senthil Kumaran (orsenthil) * (Python committer) Date: 2010-10-10 06:18
Fixed in r85347 and r85348.
History
Date User Action Args
2022-04-11 14:56:54adminsetgithub: 51534
2010-10-10 06:18:53orsenthilsetstatus: open -> closed

nosy: + orsenthil
messages: + msg118307

resolution: fixed
stage: patch review -> resolved
2010-10-07 20:25:03sandro.tosisetfiles: + issue7285-py3k.patch
nosy: + sandro.tosi
messages: + msg118130

2010-07-11 10:56:43BreamoreBoysetstage: patch review
versions: + Python 3.1, Python 2.7
2009-11-21 12:03:25asksolsetfiles: + 7285.patch
2009-11-08 04:35:40benjamin.petersonsetassignee: georg.brandl -> jnoller

nosy: + jnoller
2009-11-08 02:31:59hsmtkkcreate