]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#4695: fix backslashery.
authorGeorg Brandl <georg@python.org>
Sat, 27 Dec 2008 19:04:44 +0000 (19:04 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 27 Dec 2008 19:04:44 +0000 (19:04 +0000)
Doc/library/multiprocessing.rst

index 8297e9fcd587aaa44400b0f4c1ca2c19da77ff31..c6eb828dcf610907e59b530af66bbf5290b7dac0 100644 (file)
@@ -1810,9 +1810,9 @@ Address Formats
   filesystem.
 
 * An ``'AF_PIPE'`` address is a string of the form
-   ``r'\\\\.\\pipe\\PipeName'``.  To use :func:`Client` to connect to a named
+   ``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 ``r'\\\\ServerName\\pipe\\PipeName'`` instead.
+   form ``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.