(info_add)
| 645 | |
| 646 | |
| 647 | def collect_sqlite(info_add): |
| 648 | try: |
| 649 | import sqlite3 |
| 650 | except ImportError: |
| 651 | return |
| 652 | |
| 653 | attributes = ('sqlite_version',) |
| 654 | copy_attributes(info_add, sqlite3, 'sqlite3.%s', attributes) |
| 655 | |
| 656 | |
| 657 | def collect_zlib(info_add): |
nothing calls this directly
no test coverage detected
searching dependent graphs…