PATH:
usr
/
lib
/
python3.9
/
site-packages
/
cloudinit
# Copyright (C) 2012 Canonical Ltd. # Copyright (C) 2012 Hewlett-Packard Development Company, L.P. # Copyright (C) 2012 Yahoo! Inc. # # Author: Scott Moser <scott.moser@canonical.com> # Author: Juerg Haefliger <juerg.haefliger@hp.com> # Author: Joshua Harlow <harlowja@yahoo-inc.com> # # This file is part of cloud-init. See LICENSE file for license information. import types _NAME_TYPES = ( types.ModuleType, types.FunctionType, types.LambdaType, type, ) def obj_name(obj): if isinstance(obj, _NAME_TYPES): return str(obj.__name__) else: if not hasattr(obj, "__class__"): return repr(obj) else: return obj_name(obj.__class__)
[+]
__pycache__
[-] util.py
[edit]
[+]
mergers
[-] cloud.py
[edit]
[-] ssh_util.py
[edit]
[-] gpg.py
[edit]
[+]
reporting
[-] importer.py
[edit]
[-] subp.py
[edit]
[-] helpers.py
[edit]
[-] persistence.py
[edit]
[-] atomic_helper.py
[edit]
[-] type_utils.py
[edit]
[-] lifecycle.py
[edit]
[-] stages.py
[edit]
[+]
distros
[-] user_data.py
[edit]
[-] version.py
[edit]
[+]
analyze
[-] warnings.py
[edit]
[-] settings.py
[edit]
[-] simpletable.py
[edit]
[-] apport.py
[edit]
[-] performance.py
[edit]
[+]
config
[+]
log
[-] signal_handler.py
[edit]
[-] features.py
[edit]
[-] netinfo.py
[edit]
[-] event.py
[edit]
[+]
cmd
[-] temp_utils.py
[edit]
[-] url_helper.py
[edit]
[-] socket.py
[edit]
[-] registry.py
[edit]
[+]
sources
[+]
handlers
[-] safeyaml.py
[edit]
[-] templater.py
[edit]
[+]
net
[+]
..
[+]
filters
[-] dmi.py
[edit]
[-] __init__.py
[edit]