Import the described member. If *strict* is true, an AttributeError or an ImportError may be raised if importing fails; otherwise, None is returned on error.
(self, *, strict=False)
| 139 | return _import_module(self.module_name, strict=strict) |
| 140 | |
| 141 | def import_member(self, *, strict=False): |
| 142 | """Import the described member. |
| 143 | |
| 144 | If *strict* is true, an AttributeError or an ImportError may be |
| 145 | raised if importing fails; otherwise, None is returned on error. |
| 146 | """ |
| 147 | return _import_member( |
| 148 | self.module_name, self.member_name, strict=strict |
| 149 | ) |
| 150 | |
| 151 | |
| 152 | class _HashInfoBase: |