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 beazley
Recipients beazley, georg.brandl
Date 2008-12-18.20:53:27
SpamBayes Score 0.08455434
Marked as misclassified No
Message-id <1229633609.42.0.990434424084.issue4695@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2008-12-18 20:53:29beazleysetrecipients: + beazley, georg.brandl
2008-12-18 20:53:29beazleysetmessageid: <1229633609.42.0.990434424084.issue4695@psf.upfronthosting.co.za>
2008-12-18 20:53:28beazleylinkissue4695 messages
2008-12-18 20:53:27beazleycreate