(info_add)
| 667 | |
| 668 | |
| 669 | def collect_decimal(info_add): |
| 670 | try: |
| 671 | import _decimal |
| 672 | except ImportError: |
| 673 | return |
| 674 | |
| 675 | attributes = ('__libmpdec_version__',) |
| 676 | copy_attributes(info_add, _decimal, '_decimal.%s', attributes) |
| 677 | |
| 678 | |
| 679 | def collect_testcapi(info_add): |
nothing calls this directly
no test coverage detected