(self, nsname, *argv, **kwarg)
| 76 | """ |
| 77 | |
| 78 | def __init__(self, nsname, *argv, **kwarg): |
| 79 | name = list(argv)[0][0] |
| 80 | has_executable(name) |
| 81 | super(NSPopenWithCheck, self).__init__(nsname, *argv, **kwarg) |
| 82 | |
| 83 | KERNEL_VERSION_PATTERN = r"v?(?P<major>[0-9]+)\.(?P<minor>[0-9]+).*" |
| 84 |
nothing calls this directly
no test coverage detected