| |
- __getattr__(self, attr) from distutils.cmd.Command
- __init__(self, dist) from distutils.cmd.Command
- _ensure_stringlike(self, option, what, default=None) from distutils.cmd.Command
- _ensure_tested_string(self, option, tester, what, error_fmt, default=None) from distutils.cmd.Command
- announce(self, msg, level=1) from distutils.cmd.Command
- build_module(self, module, module_file, package)
- build_modules(self)
- build_packages(self)
- check_module(self, module, module_file)
- check_package(self, package, package_dir)
- copy_file(self, infile, outfile, preserve_mode=1, preserve_times=1, link=None, level=1) from distutils.cmd.Command
- copy_tree(self, infile, outfile, preserve_mode=1, preserve_times=1, preserve_symlinks=0, level=1) from distutils.cmd.Command
- debug_print(self, msg) from distutils.cmd.Command
- dump_options(self, header=None, indent='') from distutils.cmd.Command
- ensure_dirname(self, option) from distutils.cmd.Command
- ensure_filename(self, option) from distutils.cmd.Command
- ensure_finalized(self) from distutils.cmd.Command
- ensure_string(self, option, default=None) from distutils.cmd.Command
- ensure_string_list(self, option) from distutils.cmd.Command
- execute(self, func, args, msg=None, level=1) from distutils.cmd.Command
- finalize_options(self)
- find_all_modules(self)
- Compute the list of all modules that will be built, whether
they are specified one-module-at-a-time ('self.py_modules') or
by whole packages ('self.packages'). Return a list of tuples
(package, module, module_file), just like 'find_modules()' and
'find_package_modules()' do.
- find_modules(self)
- Finds individually-specified Python modules, ie. those listed by
module name in 'self.py_modules'. Returns a list of tuples (package,
module_base, filename): 'package' is a tuple of the path through
package-space to the module; 'module_base' is the bare (no
packages, no dots) module name, and 'filename' is the path to the
".py" file (relative to the distribution root) that implements the
module.
- find_package_modules(self, package, package_dir)
- get_command_name(self) from distutils.cmd.Command
- get_finalized_command(self, command, create=1) from distutils.cmd.Command
- get_module_outfile(self, build_dir, package, module)
- get_outputs(self)
- get_package_dir(self, package)
- Return the directory, relative to the top of the source
distribution, where package 'package' should be found
(at least according to the 'package_dir' option, if any).
- get_source_files(self)
- initialize_options(self)
- make_archive(self, base_name, format, root_dir=None, base_dir=None) from distutils.cmd.Command
- make_file(self, infiles, outfile, func, args, exec_msg=None, skip_msg=None, level=1) from distutils.cmd.Command
- mkpath(self, name, mode=511) from distutils.cmd.Command
- move_file(self, src, dst, level=1) from distutils.cmd.Command
- reinitialize_command(self, command) from distutils.cmd.Command
- run(self)
- run_command(self, command) from distutils.cmd.Command
- set_undefined_options(self, src_cmd, *option_pairs) from distutils.cmd.Command
- spawn(self, cmd, search_path=1, level=1) from distutils.cmd.Command
- warn(self, msg) from distutils.cmd.Command
|