clang 20.0.0 (based on r547379) from build 12806354. Bug: http://b/379133546 Test: N/A Change-Id: I2eb8938af55d809de674be63cb30cf27e801862b Upstream-Commit: ad834e67b1105d15ef907f6255d4c96e8e733f57
31 lines
771 B
Python
31 lines
771 B
Python
"""distutils.command
|
|
|
|
Package containing implementation of all the standard Distutils
|
|
commands."""
|
|
|
|
__all__ = ['build',
|
|
'build_py',
|
|
'build_ext',
|
|
'build_clib',
|
|
'build_scripts',
|
|
'clean',
|
|
'install',
|
|
'install_lib',
|
|
'install_headers',
|
|
'install_scripts',
|
|
'install_data',
|
|
'sdist',
|
|
'register',
|
|
'bdist',
|
|
'bdist_dumb',
|
|
'bdist_rpm',
|
|
'check',
|
|
'upload',
|
|
# These two are reserved for future use:
|
|
#'bdist_sdux',
|
|
#'bdist_pkgtool',
|
|
# Note:
|
|
# bdist_packager is not included because it only provides
|
|
# an abstract base class
|
|
]
|