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.
os.mknod()
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Split out from #107924:
cpython/Doc/library/os.rst
Lines 2398 to 2417 in cc2cf85
mknod()
S_IFSOCK
However, POSIX documents any but S_IFIFO as being “non-portable” and mkfifo() as being preferred when creating FIFOs.
S_IFIFO
mkfifo()
I think all these things should somehow be reflected.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Documentation
Split out from #107924:
cpython/Doc/library/os.rst
Lines 2398 to 2417 in cc2cf85
mknod()
, just as its POSIX counterpart, seems to work just fine withS_IFSOCK
as well.However, POSIX documents any but
S_IFIFO
as being “non-portable” andmkfifo()
as being preferred when creating FIFOs.I think all these things should somehow be reflected.
The text was updated successfully, but these errors were encountered: