Make a fifo called targetpath.
(self, tarinfo, targetpath)
| 2694 | "extracted as regular file." % tarinfo.type) |
| 2695 | |
| 2696 | def makefifo(self, tarinfo, targetpath): |
| 2697 | """Make a fifo called targetpath. |
| 2698 | """ |
| 2699 | if hasattr(os, "mkfifo"): |
| 2700 | os.mkfifo(targetpath) |
| 2701 | else: |
| 2702 | raise ExtractError("fifo not supported by system") |
| 2703 | |
| 2704 | def makedev(self, tarinfo, targetpath): |
| 2705 | """Make a character or block device called targetpath. |
no test coverage detected