Skip to content

Commit 7b2811a

Browse files
authored
Update windows_utils.py
1 parent daec027 commit 7b2811a

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-
pipename = f'python-pipe-{os.getpid()}-{uuid.uuid4()}'
35+
pipename = f'python-pipe-{os.getpid()}-{uuid.uuid4().hex}'
3636
address = fr'\\.\pipe\{pipename}'
3737

3838
if duplex:

0 commit comments

Comments
 (0)