(info_add)
| 675 | |
| 676 | |
| 677 | def collect_expat(info_add): |
| 678 | try: |
| 679 | from xml.parsers import expat |
| 680 | except ImportError: |
| 681 | return |
| 682 | |
| 683 | attributes = ('EXPAT_VERSION',) |
| 684 | copy_attributes(info_add, expat, 'expat.%s', attributes) |
| 685 | |
| 686 | |
| 687 | def collect_decimal(info_add): |
nothing calls this directly
no test coverage detected
searching dependent graphs…