(info_add)
| 637 | |
| 638 | |
| 639 | def collect_sqlite(info_add): |
| 640 | try: |
| 641 | import sqlite3 |
| 642 | except ImportError: |
| 643 | return |
| 644 | |
| 645 | attributes = ('sqlite_version',) |
| 646 | copy_attributes(info_add, sqlite3, 'sqlite3.%s', attributes) |
| 647 | |
| 648 | |
| 649 | def collect_zlib(info_add): |
nothing calls this directly
no test coverage detected