We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daec027 commit 7b2811aCopy full SHA for 7b2811a
Lib/asyncio/windows_utils.py
@@ -32,7 +32,7 @@
32
33
def pipe(*, duplex=False, overlapped=(True, True), bufsize=BUFSIZE):
34
"""Like os.pipe() but with overlapped support and using handles not fds."""
35
- pipename = f'python-pipe-{os.getpid()}-{uuid.uuid4()}'
+ pipename = f'python-pipe-{os.getpid()}-{uuid.uuid4().hex}'
36
address = fr'\\.\pipe\{pipename}'
37
38
if duplex:
0 commit comments