All Downloads are FREE. Search and download functionalities are using the official Maven repository.

Lib.distutils.jythoncompiler.py Maven / Gradle / Ivy

There is a newer version: 2.7.1.1
Show newest version
"""distutils.jythoncompiler

Jython does not support extension libraries. This CCompiler simply
raises CCompiler exceptions.
"""

from distutils.ccompiler import CCompiler
from distutils.errors import CCompilerError

class JythonCompiler(CCompiler):

    """Refuses to compile C extensions on Jython"""

    compiler_type = 'jython'
    executables = {}

    def refuse_compilation(self, *args, **kwargs):
        """Refuse compilation"""
        raise CCompilerError('Compiling extensions is not supported on Jython')

    preprocess = compile = create_static_lib = link = refuse_compilation




© 2015 - 2025 Weber Informatics LLC | Privacy Policy