diff --git a/Lib/uuid.py b/Lib/uuid.py index c286eac38e1ef4..7ab3b4418c33c7 100644 --- a/Lib/uuid.py +++ b/Lib/uuid.py @@ -579,6 +579,14 @@ def _netstat_getnode(): _UuidCreate = None +def _load_system_functions(): + """[DEPRECATED] no-op since Python 3.9.""" + import warnings + warnings.warn("This private function will go away by Python 3.15;" + " it has been a no-op since 3.9.", DeprecationWarning, + stacklevel=2) + + def _unix_getnode(): """Get the hardware address on Unix using the _uuid extension module.""" if _generate_time_safe: