module documentation

distutils.command.config Implements the Distutils 'config' command, a (mostly) empty command class that exists mainly to be sub-classed by specific module distributions and applications. The idea is that while every "config" command is different, at least they're all named the same, and users always see "config" in the list of standard commands. Also, this is a good place to put common configure-like tasks: "try to compile this C code", or "figure out where this header file lives".

Class config No class docstring; 0/8 instance variable, 0/2 class variable, 9/17 methods documented
Function dump_file Dumps a file content into log.info.
Constant LANG_EXT Undocumented
def dump_file(filename, head=None): (source)

Dumps a file content into log.info. If head is not None, will be dumped before the file content.

LANG_EXT: dict[str, str] = (source)

Undocumented

Value
{'c': '.c', 'c++': '.cxx'}