mit neuen venv und exe-Files

This commit is contained in:
2024-11-03 17:26:54 +01:00
parent 07c05a338a
commit 0c373ff593
15115 changed files with 1998469 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
"""Internal exception classes."""
# Only re-export setuptools errors to avoid exceptions not handled correctly
from setuptools.errors import (
ExecError,
FileError,
ModuleError,
OptionError,
PlatformError,
SetupError,
)
__all__ = [
"ExecError",
"FileError",
"ModuleError",
"OptionError",
"PlatformError",
"SetupError",
]
ExecError.__doc__ = """\
Raised when there are problems executing an external program."""
FileError.__doc__ = """\
Raised when an error is detected related to file/resource not found."""
ModuleError.__doc__ = """\
Raised when there are problems to load the module or module metadata."""
OptionError.__doc__ = """\
Raised when an error is detected in the configuration. The associated value is
a string indicating what precisely went wrong."""
PlatformError.__doc__ = """\
Raised when an error is detected in the module that is platform specific."""
SetupError.__doc__ = """\
Raised for errors that can be definitely blamed on the setup script, such as
invalid keyword arguments to 'setup()'."""