/opt/alt/python38/lib/python3.8/site-packages/sentry_sdk/integrations
NameSizeModeActions
django/-0755rm
__pycache__/-0755rm
aiohttp.py38890644editdlrm
argv.py8940644editdlrm
atexit.py14900644editdlrm
aws_lambda.py67580644editdlrm
bottle.py55270644editdlrm
celery.py44230644editdlrm
dedupe.py10850644editdlrm
excepthook.py13350644editdlrm
flask.py72720644editdlrm
gnu_backtrace.py30080644editdlrm
logging.py60190644editdlrm
modules.py12390644editdlrm
pyramid.py59140644editdlrm
rq.py32730644editdlrm
sanic.py70650644editdlrm
serverless.py12380644editdlrm
stdlib.py18690644editdlrm
threading.py15970644editdlrm
tornado.py63870644editdlrm
wsgi.py72990644editdlrm
_wsgi_common.py36660644editdlrm
__init__.py42360644editdlrm
Edit: /opt/alt/python38/lib/python3.8/site-packages/sentry_sdk/integrations/argv.py (894B)
from __future__ import absolute_import import sys from sentry_sdk.hub import Hub from sentry_sdk.integrations import Integration from sentry_sdk.scope import add_global_event_processor if False: from typing import Any from typing import Dict class ArgvIntegration(Integration): identifier = "argv" @staticmethod def setup_once(): # type: () -> None @add_global_event_processor def processor(event, hint): # type: (Dict[str, Any], Dict[str, Any]) -> Dict[str, Any] if Hub.current.get_integration(ArgvIntegration) is not None: extra = event.setdefault("extra", {}) # If some event processor decided to set extra to e.g. an # `int`, don't crash. Not here. if isinstance(extra, dict): extra["sys.argv"] = sys.argv return event