MCPcopy Index your code
hub / github.com/RustPython/RustPython / _object_name

Function _object_name

Lib/importlib/_bootstrap.py:23–27  ·  view source on GitHub ↗
(obj)

Source from the content-addressed store, hash-verified

21# anything specified at the class level.
22
23def _object_name(obj):
24 try:
25 return obj.__qualname__
26 except AttributeError:
27 return type(obj).__qualname__
28
29# Bootstrap-related code ######################################################
30

Callers 2

_execFunction · 0.70
_load_unlockedFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected