Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 95f7ed8

Browse files
miss-islingtoncousteaulecommandant
authored andcommitted
[3.11] gh-88355: Fix backslashes in AF_PIPE (GH-96543) (#97854)
gh-88355: Fix backslashes in AF_PIPE (GH-96543) Fix backslashes in AF_PIPE (GH-88355) The correct syntax for AF_PIPE addresses is `\\.\pipe\blahblah`, not `\.\pipe{blahblah}`, but the syntax markup messed up the backslashes. (cherry picked from commit ff28d89) Co-authored-by: cousteau <[email protected]> Co-authored-by: cousteau <[email protected]>
1 parent 028e7d4 commit 95f7ed8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/library/multiprocessing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2630,9 +2630,9 @@ Address Formats
26302630
filesystem.
26312631

26322632
* An ``'AF_PIPE'`` address is a string of the form
2633-
:samp:`r'\\\\.\\pipe\\{PipeName}'`. To use :func:`Client` to connect to a named
2633+
:samp:`r'\\\\\\.\\pipe\\\\{PipeName}'`. To use :func:`Client` to connect to a named
26342634
pipe on a remote computer called *ServerName* one should use an address of the
2635-
form :samp:`r'\\\\{ServerName}\\pipe\\{PipeName}'` instead.
2635+
form :samp:`r'\\\\\\\\{ServerName}\\pipe\\\\{PipeName}'` instead.
26362636

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

0 commit comments

Comments
 (0)