python (3.11.7)

(root)/
lib/
python3.11/
distutils/
command/
__init__.py
       1  """distutils.command
       2  
       3  Package containing implementation of all the standard Distutils
       4  commands."""
       5  
       6  __all__ = ['build',
       7             'build_py',
       8             'build_ext',
       9             'build_clib',
      10             'build_scripts',
      11             'clean',
      12             'install',
      13             'install_lib',
      14             'install_headers',
      15             'install_scripts',
      16             'install_data',
      17             'sdist',
      18             'register',
      19             'bdist',
      20             'bdist_dumb',
      21             'bdist_rpm',
      22             'check',
      23             'upload',
      24             # These two are reserved for future use:
      25             #'bdist_sdux',
      26             #'bdist_pkgtool',
      27             # Note:
      28             # bdist_packager is not included because it only provides
      29             # an abstract base class
      30            ]