Skip to content

Commit 919de57

Browse files
Fix backslashes in AF_PIPE (python#88355)
The correct syntax for AF_PIPE addresses is `\\.\pipe\blahblah`, not `\.\pipe{blahblah}`, but the syntax markup messed up the backslashes.
1 parent fc21a43 commit 919de57

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
@@ -2618,9 +2618,9 @@ Address Formats
26182618
filesystem.
26192619

26202620
* An ``'AF_PIPE'`` address is a string of the form
2621-
:samp:`r'\\\\.\\pipe\\{PipeName}'`. To use :func:`Client` to connect to a named
2621+
:samp:`r'\\\\\\.\\pipe\\\\{PipeName}'`. To use :func:`Client` to connect to a named
26222622
pipe on a remote computer called *ServerName* one should use an address of the
2623-
form :samp:`r'\\\\{ServerName}\\pipe\\{PipeName}'` instead.
2623+
form :samp:`r'\\\\\\{ServerName}\\pipe\\\\{PipeName}'` instead.
26242624

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

0 commit comments

Comments
 (0)