(info_add)
| 657 | |
| 658 | |
| 659 | def collect_expat(info_add): |
| 660 | try: |
| 661 | from xml.parsers import expat |
| 662 | except ImportError: |
| 663 | return |
| 664 | |
| 665 | attributes = ('EXPAT_VERSION',) |
| 666 | copy_attributes(info_add, expat, 'expat.%s', attributes) |
| 667 | |
| 668 | |
| 669 | def collect_decimal(info_add): |
nothing calls this directly
no test coverage detected