(info_add)
| 685 | |
| 686 | |
| 687 | def collect_decimal(info_add): |
| 688 | try: |
| 689 | import _decimal |
| 690 | except ImportError: |
| 691 | return |
| 692 | |
| 693 | attributes = ('__libmpdec_version__',) |
| 694 | copy_attributes(info_add, _decimal, '_decimal.%s', attributes) |
| 695 | |
| 696 | |
| 697 | def collect_testcapi(info_add): |
nothing calls this directly
no test coverage detected
searching dependent graphs…