(s)
| 1293 | return 1 if value else 0 |
| 1294 | |
| 1295 | def to_utf8(s): |
| 1296 | return s if isinstance(s, str) else s.decode("utf-8") |
| 1297 | |
| 1298 | def pkg_config(pkg): |
| 1299 | """Run pkg-config on the specified package |
no test coverage detected
searching dependent graphs…