"""
Launch the Python script on the command line after
setuptools is bootstrapped via import. """
# Note that setuptools gets imported implicitly by the # invocation of this script using python -m setuptools.launch
import sys import tokenize
def run(): """
Run the script in sys.argv[1] asif it had
been invoked naturally. """
__builtins__
script_name = sys.argv[1]
namespace = dict(
__file__=script_name,
__name__='__main__',
__doc__=None,
)
sys.argv[:] = sys.argv[1:]
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.