Metadata-Version: 2.4
Name: systemd-coredump-python
Version: 3
Summary: sys.excepthook helper to log Python exceptions in the journal via systemd-coredump
Home-page: https://github.com/systemd/systemd-coredump-python
Author: Zbigniew Jędrzejewski-Szmek
Author-email: zbyszek@in.waw.pl
License: GPLv2+
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Logging
Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
License-File: COPYING
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: summary

sys.excepthook helper for Python to send backtraces to the journal

GIT:
    git@github.com:systemd/systemd-coredump-python.git
    https://github.com/systemd/systemd-coredump-python.git

BUG REPORTS:
    https://github.com/systemd/systemd-coredump-python/issues

LICENSE:
    GPLv2.1+ for all code

REQUIREMENTS:
    Python 2.x or 3.x.
    Tested with CPython, PyPy, PyPy3.

    (Does not work with Jython: 2.5 is too old, and 2.7 is broken,
    see http://bugs.jython.org/issue2405.)

    systemd v. 233 or later is required.

USAGE:

    For this module provides a function which may be installed as the
    `sys.excepthook` exception handler. It will generate a backtrace
    and invoke systemd-coredump(8) to send it to off to the journal
    along with some additional metadata about the python process.

    When installed, a .pth file is also installed which loads this
    module and checks if it should handle `sys.excepthook`. It will be
    automatically enabled if /proc/sys/kernel/core_pattern specifies
    systemd-coredump.

    It is also possible to unconditionally install this module as
    `sys.excepthook` by calling
    `systemd_coredump_exception_handler.install(True)`.

SEE ALSO:
    https://github.com/abrt/abrt/blob/master/src/hooks/abrt_exception_handler.py.in
