(info_add)
| 655 | |
| 656 | |
| 657 | def collect_zlib(info_add): |
| 658 | try: |
| 659 | import zlib |
| 660 | except ImportError: |
| 661 | return |
| 662 | |
| 663 | attributes = ('ZLIB_VERSION', 'ZLIB_RUNTIME_VERSION', 'ZLIBNG_VERSION') |
| 664 | copy_attributes(info_add, zlib, 'zlib.%s', attributes) |
| 665 | |
| 666 | |
| 667 | def collect_zstd(info_add): |
nothing calls this directly
no test coverage detected
searching dependent graphs…