Skip to content

Commit ff28d89

Browse files
gh-88355: Fix backslashes in AF_PIPE (#96543)
Fix backslashes in AF_PIPE (#88355) The correct syntax for AF_PIPE addresses is `\\.\pipe\blahblah`, not `\.\pipe{blahblah}`, but the syntax markup messed up the backslashes.
1 parent 9859581 commit ff28d89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/library/multiprocessing.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -2629,9 +2629,9 @@ Address Formats
26292629
filesystem.
26302630

26312631
* An ``'AF_PIPE'`` address is a string of the form
2632-
:samp:`r'\\\\.\\pipe\\{PipeName}'`. To use :func:`Client` to connect to a named
2632+
:samp:`r'\\\\\\.\\pipe\\\\{PipeName}'`. To use :func:`Client` to connect to a named
26332633
pipe on a remote computer called *ServerName* one should use an address of the
2634-
form :samp:`r'\\\\{ServerName}\\pipe\\{PipeName}'` instead.
2634+
form :samp:`r'\\\\\\\\{ServerName}\\pipe\\\\{PipeName}'` instead.
26352635

26362636
Note that any string beginning with two backslashes is assumed by default to be
26372637
an ``'AF_PIPE'`` address rather than an ``'AF_UNIX'`` address.

0 commit comments

Comments
 (0)