This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients dlukes, serhiy.storchaka
Date 2021-03-23.18:50:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1616525458.11.0.863158637304.issue43604@roundup.psfhosted.org>
In-reply-to
Content
You can use TemporaryDirectory.

with tempfile.TemporaryDirectory() as dir:
    fifo_path = os.path.join(dir, "fifo")
    os.mkfifo(fifo_path, 0o600)
    ...
History
Date User Action Args
2021-03-23 18:50:58serhiy.storchakasetrecipients: + serhiy.storchaka, dlukes
2021-03-23 18:50:58serhiy.storchakasetmessageid: <1616525458.11.0.863158637304.issue43604@roundup.psfhosted.org>
2021-03-23 18:50:58serhiy.storchakalinkissue43604 messages
2021-03-23 18:50:58serhiy.storchakacreate