MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / makefifo

Method makefifo

tools/python-3.11.9-amd64/Lib/tarfile.py:2475–2481  ·  view source on GitHub ↗

Make a fifo called targetpath.

(self, tarinfo, targetpath)

Source from the content-addressed store, hash-verified

2473 "extracted as regular file." % tarinfo.type)
2474
2475 def makefifo(self, tarinfo, targetpath):
2476 """Make a fifo called targetpath.
2477 """
2478 if hasattr(os, "mkfifo"):
2479 os.mkfifo(targetpath)
2480 else:
2481 raise ExtractError("fifo not supported by system")
2482
2483 def makedev(self, tarinfo, targetpath):
2484 """Make a character or block device called targetpath.

Callers 1

_extract_memberMethod · 0.95

Calls 1

ExtractErrorClass · 0.85

Tested by

no test coverage detected