(info_add)
| 647 | |
| 648 | |
| 649 | def collect_zlib(info_add): |
| 650 | try: |
| 651 | import zlib |
| 652 | except ImportError: |
| 653 | return |
| 654 | |
| 655 | attributes = ('ZLIB_VERSION', 'ZLIB_RUNTIME_VERSION') |
| 656 | copy_attributes(info_add, zlib, 'zlib.%s', attributes) |
| 657 | |
| 658 | |
| 659 | def collect_expat(info_add): |
nothing calls this directly
no test coverage detected