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: Bad AF_PIPE address in multiprocessing documentation
Type: Stage:
Components: Documentation Versions: Python 3.0, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: beazley, georg.brandl
Priority: normal Keywords:

Created on 2008-12-18 20:53 by beazley, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg78041 - (view) Author: David M. Beazley (beazley) Date: 2008-12-18 20:53
In the "Address Formats" part of the "Listeners and Clients" section of 
the documentation for the multiprocessing module, AF_PIPE addresses are 
described as having this format:

r'\\\\ServerName\\pipe\\PipeName'

However, it is really this:

r'\\ServerName\pipe\PipeName'

Be careful with raw strings.  The documentation is showing the output of 
repr(), not a properly formed raw string. 

I verified this fix on Windows XP.
msg78380 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-12-27 19:04
Thanks, fixed in r67960.
History
Date User Action Args
2022-04-11 14:56:42adminsetgithub: 48945
2008-12-27 19:04:53georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg78380
2008-12-18 20:53:28beazleycreate