Make a fifo called targetpath.
(self, tarinfo, targetpath)
| 2675 | "extracted as regular file." % tarinfo.type) |
| 2676 | |
| 2677 | def makefifo(self, tarinfo, targetpath): |
| 2678 | """Make a fifo called targetpath. |
| 2679 | """ |
| 2680 | if hasattr(os, "mkfifo"): |
| 2681 | os.mkfifo(targetpath) |
| 2682 | else: |
| 2683 | raise ExtractError("fifo not supported by system") |
| 2684 | |
| 2685 | def makedev(self, tarinfo, targetpath): |
| 2686 | """Make a character or block device called targetpath. |
no test coverage detected