[DEPRECATED] Get the hardware address on Windows.
()
| 570 | return _windll_getnode() |
| 571 | |
| 572 | def _netbios_getnode(): |
| 573 | """[DEPRECATED] Get the hardware address on Windows.""" |
| 574 | # bpo-40501: UuidCreateSequential() is now the only supported approach |
| 575 | return _windll_getnode() |
| 576 | |
| 577 | |
| 578 | # Import optional C extension at toplevel, to help disabling it when testing |
nothing calls this directly
no test coverage detected