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

pythonexec.pythonexec.py Maven / Gradle / Ivy

The newest version!
import sys
import traceback
import json
import inspect

__python_exception__ = ""
try:
    pass
    sys.stdout.flush()
    sys.stderr.flush()
except Exception as ex:
    __python_exception__ = ex
    try:
        exc_info = sys.exc_info()
    finally:
        print(ex)
        traceback.print_exception(*exc_info)
        sys.stdout.flush()
        sys.stderr.flush()





© 2015 - 2025 Weber Informatics LLC | Privacy Policy