MCPcopy Index your code
hub / github.com/python/cpython / _windll_getnode

Function _windll_getnode

Lib/uuid.py:651–655  ·  view source on GitHub ↗

Get the hardware address on Windows using the _uuid extension module.

()

Source from the content-addressed store, hash-verified

649 return UUID(bytes=uuid_time).node
650
651def _windll_getnode():
652 """Get the hardware address on Windows using the _uuid extension module."""
653 if _UuidCreate and _has_stable_extractable_node:
654 uuid_bytes = _UuidCreate()
655 return UUID(bytes_le=uuid_bytes).node
656
657def _random_getnode():
658 """Get a random node ID."""

Callers

nothing calls this directly

Calls 1

UUIDClass · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…