[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.133.137.107: ~ $
"""distutils.command.check

Implements the Distutils 'check' command.
"""
__revision__ = "$Id$"

from distutils.core import Command
from distutils.dist import PKG_INFO_ENCODING
from distutils.errors import DistutilsSetupError

try:
    # docutils is installed
    from docutils.utils import Reporter
    from docutils.parsers.rst import Parser
    from docutils import frontend
    from docutils import nodes
    from StringIO import StringIO

    class SilentReporter(Reporter):

        def __init__(self, source, report_level, halt_level, stream=None,
                     debug=0, encoding='ascii', error_handler='replace'):
            self.messages = []
            Reporter.__init__(self, source, report_level, halt_level, stream,
                              debug, encoding, error_handler)

        def system_message(self, level, message, *children, **kwargs):
            self.messages.append((level, message, children, kwargs))
            return nodes.system_message(message, level=level,
                                        type=self.levels[level],
                                        *children, **kwargs)

    HAS_DOCUTILS = True
except ImportError:
    # docutils is not installed
    HAS_DOCUTILS = False

class check(Command):
    """This command checks the meta-data of the package.
    """
    description = ("perform some checks on the package")
    user_options = [('metadata', 'm', 'Verify meta-data'),
                    ('restructuredtext', 'r',
                     ('Checks if long string meta-data syntax '
                      'are reStructuredText-compliant')),
                    ('strict', 's',
                     'Will exit with an error if a check fails')]

    boolean_options = ['metadata', 'restructuredtext', 'strict']

    def initialize_options(self):
        """Sets default values for options."""
        self.restructuredtext = 0
        self.metadata = 1
        self.strict = 0
        self._warnings = 0

    def finalize_options(self):
        pass

    def warn(self, msg):
        """Counts the number of warnings that occurs."""
        self._warnings += 1
        return Command.warn(self, msg)

    def run(self):
        """Runs the command."""
        # perform the various tests
        if self.metadata:
            self.check_metadata()
        if self.restructuredtext:
            if HAS_DOCUTILS:
                self.check_restructuredtext()
            elif self.strict:
                raise DistutilsSetupError('The docutils package is needed.')

        # let's raise an error in strict mode, if we have at least
        # one warning
        if self.strict and self._warnings > 0:
            raise DistutilsSetupError('Please correct your package.')

    def check_metadata(self):
        """Ensures that all required elements of meta-data are supplied.

        name, version, URL, (author and author_email) or
        (maintainer and maintainer_email)).

        Warns if any are missing.
        """
        metadata = self.distribution.metadata

        missing = []
        for attr in ('name', 'version', 'url'):
            if not (hasattr(metadata, attr) and getattr(metadata, attr)):
                missing.append(attr)

        if missing:
            self.warn("missing required meta-data: %s"  % ', '.join(missing))
        if metadata.author:
            if not metadata.author_email:
                self.warn("missing meta-data: if 'author' supplied, " +
                          "'author_email' must be supplied too")
        elif metadata.maintainer:
            if not metadata.maintainer_email:
                self.warn("missing meta-data: if 'maintainer' supplied, " +
                          "'maintainer_email' must be supplied too")
        else:
            self.warn("missing meta-data: either (author and author_email) " +
                      "or (maintainer and maintainer_email) " +
                      "must be supplied")

    def check_restructuredtext(self):
        """Checks if the long string fields are reST-compliant."""
        data = self.distribution.get_long_description()
        if not isinstance(data, unicode):
            data = data.decode(PKG_INFO_ENCODING)
        for warning in self._check_rst_data(data):
            line = warning[-1].get('line')
            if line is None:
                warning = warning[1]
            else:
                warning = '%s (line %s)' % (warning[1], line)
            self.warn(warning)

    def _check_rst_data(self, data):
        """Returns warnings when the provided data doesn't compile."""
        source_path = StringIO()
        parser = Parser()
        settings = frontend.OptionParser().get_default_values()
        settings.tab_width = 4
        settings.pep_references = None
        settings.rfc_references = None
        reporter = SilentReporter(source_path,
                          settings.report_level,
                          settings.halt_level,
                          stream=settings.warning_stream,
                          debug=settings.debug,
                          encoding=settings.error_encoding,
                          error_handler=settings.error_encoding_error_handler)

        document = nodes.document(settings, reporter, source=source_path)
        document.note_source(source_path, -1)
        try:
            parser.parse(data, document)
        except AttributeError:
            reporter.messages.append((-1, 'Could not finish the parsing.',
                                      '', {}))

        return reporter.messages

Filemanager

Name Type Size Permission Actions
.__init__.pyo.40009 File 665 B 0644
.bdist.pyo.40009 File 5.1 KB 0644
.bdist_dumb.pyo.40009 File 4.92 KB 0644
.build.pyo.40009 File 5.03 KB 0644
.build_clib.pyo.40009 File 6.28 KB 0644
.build_ext.pyo.40009 File 19.09 KB 0644
.build_scripts.pyo.40009 File 4.43 KB 0644
.check.pyo.40009 File 6.08 KB 0644
.clean.pyo.40009 File 3.1 KB 0644
.config.pyo.40009 File 12.39 KB 0644
.install.pyo.40009 File 16.5 KB 0644
.install_data.pyo.40009 File 3.09 KB 0644
.install_egg_info.pyo.40009 File 3.68 KB 0644
.install_headers.pyo.40009 File 2.24 KB 0644
.install_lib.pyo.40009 File 6.63 KB 0644
.install_scripts.pyo.40009 File 2.93 KB 0644
.register.pyo.40009 File 9.98 KB 0644
.sdist.pyo.40009 File 16.31 KB 0644
.upload.pyo.40009 File 6.13 KB 0644
__init__.py File 822 B 0644
__init__.pyc File 665 B 0644
__init__.pyo File 665 B 0644
bdist.py File 5.46 KB 0644
bdist.pyc File 5.1 KB 0644
bdist.pyo File 5.1 KB 0644
bdist_dumb.py File 5.07 KB 0644
bdist_dumb.pyc File 4.92 KB 0644
bdist_dumb.pyo File 4.92 KB 0644
bdist_msi.py File 34.37 KB 0644
bdist_msi.pyc File 23.45 KB 0644
bdist_msi.pyo File 23.35 KB 0644
bdist_rpm.py File 20.55 KB 0644
bdist_rpm.pyc File 17.32 KB 0644
bdist_rpm.pyo File 17.24 KB 0644
bdist_wininst.py File 14.65 KB 0644
bdist_wininst.pyc File 10.55 KB 0644
bdist_wininst.pyo File 10.47 KB 0644
build.py File 5.31 KB 0644
build.pyc File 5.03 KB 0644
build.pyo File 5.03 KB 0644
build_clib.py File 7.94 KB 0644
build_clib.pyc File 6.28 KB 0644
build_clib.pyo File 6.28 KB 0644
build_ext.py File 31.75 KB 0644
build_ext.py.debug-build File 31.53 KB 0644
build_ext.pyc File 19.09 KB 0644
build_ext.pyo File 19.09 KB 0644
build_py.py File 15.92 KB 0644
build_py.pyc File 11.24 KB 0644
build_py.pyo File 11.17 KB 0644
build_scripts.py File 4.49 KB 0644
build_scripts.pyc File 4.43 KB 0644
build_scripts.pyo File 4.43 KB 0644
check.py File 5.43 KB 0644
check.pyc File 6.08 KB 0644
check.pyo File 6.08 KB 0644
clean.py File 2.75 KB 0644
clean.pyc File 3.1 KB 0644
clean.pyo File 3.1 KB 0644
command_template File 719 B 0644
config.py File 12.82 KB 0644
config.pyc File 12.39 KB 0644
config.pyo File 12.39 KB 0644
install.py File 25.65 KB 0644
install.pyc File 16.5 KB 0644
install.pyo File 16.5 KB 0644
install_data.py File 2.78 KB 0644
install_data.pyc File 3.09 KB 0644
install_data.pyo File 3.09 KB 0644
install_egg_info.py File 2.53 KB 0644
install_egg_info.pyc File 3.68 KB 0644
install_egg_info.pyo File 3.68 KB 0644
install_headers.py File 1.31 KB 0644
install_headers.pyc File 2.24 KB 0644
install_headers.pyo File 2.24 KB 0644
install_lib.py File 8.14 KB 0644
install_lib.pyc File 6.63 KB 0644
install_lib.pyo File 6.63 KB 0644
install_scripts.py File 2.02 KB 0644
install_scripts.pyc File 2.93 KB 0644
install_scripts.pyo File 2.93 KB 0644
register.py File 11.56 KB 0644
register.pyc File 9.98 KB 0644
register.pyo File 9.98 KB 0644
sdist.py File 18.12 KB 0644
sdist.pyc File 16.31 KB 0644
sdist.pyo File 16.31 KB 0644
upload.py File 6.84 KB 0644
upload.pyc File 6.13 KB 0644
upload.pyo File 6.13 KB 0644
wininst-6.0.exe File 60 KB 0644
wininst-7.1.exe File 64 KB 0644
wininst-8.0.exe File 60 KB 0644
wininst-9.0-amd64.exe File 218.5 KB 0644
wininst-9.0.exe File 191.5 KB 0644