Skip to content

Commit 345f5e7

Browse files
authored
fix windows_utils.py
1 parent cf5da77 commit 345f5e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/asyncio/windows_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
def pipe(*, duplex=False, overlapped=(True, True), bufsize=BUFSIZE):
3434
"""Like os.pipe() but with overlapped support and using handles not fds."""
35-
address = r'\\.\pipe\python-pipe-{:d}-{:s}'.format(os.getpid(),
35+
address = r'\\.\pipe\python-pipe-{:d}-{:s}'.format(os.getpid(),
3636
str(uuid.uuid4()))
3737

3838
if duplex:

0 commit comments

Comments
 (0)