diff options
author | cousteau <cousteaulecommandant@users.noreply.github.com> | 2022-10-04 22:54:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-04 22:54:03 (GMT) |
commit | ff28d8926de92d809e3b7f71d3e44672178ed11e (patch) | |
tree | 214f937d2de75a9b5ba45b5195cf71acbfcef989 | |
parent | 985958187d578cfa311e404588950b29fda95db7 (diff) | |
download | cpython-ff28d8926de92d809e3b7f71d3e44672178ed11e.zip cpython-ff28d8926de92d809e3b7f71d3e44672178ed11e.tar.gz cpython-ff28d8926de92d809e3b7f71d3e44672178ed11e.tar.bz2 |
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.
-rw-r--r-- | Doc/library/multiprocessing.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 6f6e788..dab115a 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -2629,9 +2629,9 @@ Address Formats filesystem. * An ``'AF_PIPE'`` address is a string of the form - :samp:`r'\\\\.\\pipe\\{PipeName}'`. To use :func:`Client` to connect to a named + :samp:`r'\\\\\\.\\pipe\\\\{PipeName}'`. To use :func:`Client` to connect to a named pipe on a remote computer called *ServerName* one should use an address of the - form :samp:`r'\\\\{ServerName}\\pipe\\{PipeName}'` instead. + form :samp:`r'\\\\\\\\{ServerName}\\pipe\\\\{PipeName}'` instead. Note that any string beginning with two backslashes is assumed by default to be an ``'AF_PIPE'`` address rather than an ``'AF_UNIX'`` address. |