Make a fifo called targetpath.
(self, tarinfo, targetpath)
| 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. |
no test coverage detected