(info_add)
| 665 | |
| 666 | |
| 667 | def collect_zstd(info_add): |
| 668 | try: |
| 669 | import _zstd |
| 670 | except ImportError: |
| 671 | return |
| 672 | |
| 673 | attributes = ('zstd_version',) |
| 674 | copy_attributes(info_add, _zstd, 'zstd.%s', attributes) |
| 675 | |
| 676 | |
| 677 | def collect_expat(info_add): |
nothing calls this directly
no test coverage detected
searching dependent graphs…