MCPcopy Index your code
hub / github.com/python/cpython / S_ISFIFO

Function S_ISFIFO

Lib/stat.py:66–68  ·  view source on GitHub ↗

Return True if mode is from a FIFO (named pipe).

(mode)

Source from the content-addressed store, hash-verified

64 return S_IFMT(mode) == S_IFREG
65
66def S_ISFIFO(mode):
67 """Return True if mode is from a FIFO (named pipe)."""
68 return S_IFMT(mode) == S_IFIFO
69
70def S_ISLNK(mode):
71 """Return True if mode is from a symbolic link."""

Callers 1

is_fifoMethod · 0.90

Calls 1

S_IFMTFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…