Skip to content

Commit a980daf

Browse files
[3.10] gh-88355: Fix backslashes in AF_PIPE (GH-96543) (#97855)
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 f9b49b6 commit a980daf

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
@@ -2595,9 +2595,9 @@ Address Formats
25952595
filesystem.
25962596

25972597
* An ``'AF_PIPE'`` address is a string of the form
2598-
:samp:`r'\\\\.\\pipe\\{PipeName}'`. To use :func:`Client` to connect to a named
2598+
:samp:`r'\\\\\\.\\pipe\\\\{PipeName}'`. To use :func:`Client` to connect to a named
25992599
pipe on a remote computer called *ServerName* one should use an address of the
2600-
form :samp:`r'\\\\{ServerName}\\pipe\\{PipeName}'` instead.
2600+
form :samp:`r'\\\\\\\\{ServerName}\\pipe\\\\{PipeName}'` instead.
26012601

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

0 commit comments

Comments
 (0)