[DEPRECATED] Get the hardware address on Windows.
()
| 565 | return _find_mac_under_heading('netstat', '-ian', b'Address') |
| 566 | |
| 567 | def _ipconfig_getnode(): |
| 568 | """[DEPRECATED] Get the hardware address on Windows.""" |
| 569 | # bpo-40501: UuidCreateSequential() is now the only supported approach |
| 570 | return _windll_getnode() |
| 571 | |
| 572 | def _netbios_getnode(): |
| 573 | """[DEPRECATED] Get the hardware address on Windows.""" |
nothing calls this directly
no test coverage detected