PNG  IHDR* pHYs+ IDATx]n#; cdLb Ǚ[at¤_:uP}>!Usă cag޿ ֵNu`ݼTâabO7uL&y^wFٝA"l[|ŲHLN밪4*sG3|Dv}?+y߉{OuOAt4Jj.u]Gz*҉sP'VQKbA1u\`& Af;HWj hsO;ogTu uj7S3/QzUr&wS`M$X_L7r2;aE+ώ%vikDA:dR+%KzƉo>eOth$z%: :{WwaQ:wz%4foɹE[9<]#ERINƻv溂E%P1i01 |Jvҗ&{b?9g=^wζXn/lK::90KwrюO\!ջ3uzuGv^;騢wq<Iatv09:tt~hEG`v;3@MNZD.1]L:{ծI3`L(÷ba")Y.iljCɄae#I"1 `3*Bdz>j<fU40⨬%O$3cGt]j%Fߠ_twJ;ABU8vP3uEԑwQ V:h%))LfraqX-ۿX]v-\9I gl8tzX ]ecm)-cgʒ#Uw=Wlێn(0hPP/ӨtQ“&J35 $=]r1{tLuǮ*i0_;NƝ8;-vݏr8+U-kruȕYr0RnC]*ެ(M:]gE;{]tg(#ZJ9y>utRDRMdr9㪩̞zֹb<ģ&wzJM"iI( .ꮅX)Qw:9,i좜\Ԛi7&N0:asϓc];=ΗOӣ APqz93 y $)A*kVHZwBƺnWNaby>XMN*45~ղM6Nvm;A=jֲ.~1}(9`KJ/V F9[=`~[;sRuk]rєT!)iQO)Y$V ی ۤmzWz5IM Zb )ˆC`6 rRa}qNmUfDsWuˤV{ Pݝ'=Kֳbg,UҘVz2ﴻnjNgBb{? ߮tcsͻQuxVCIY۠:(V뺕 ٥2;t`@Fo{Z9`;]wMzU~%UA蛚dI vGq\r82iu +St`cR.6U/M9IENDB` REDROOM
PHP 5.6.40
Preview: base_tasks.py Size: 2.61 KB
/lib64/python3.12/asyncio/base_tasks.py

import linecache
import reprlib
import traceback

from . import base_futures
from . import coroutines


def _task_repr_info(task):
    info = base_futures._future_repr_info(task)

    if task.cancelling() and not task.done():
        # replace status
        info[0] = 'cancelling'

    info.insert(1, 'name=%r' % task.get_name())

    if task._fut_waiter is not None:
        info.insert(2, f'wait_for={task._fut_waiter!r}')

    if task._coro:
        coro = coroutines._format_coroutine(task._coro)
        info.insert(2, f'coro=<{coro}>')

    return info


@reprlib.recursive_repr()
def _task_repr(task):
    info = ' '.join(_task_repr_info(task))
    return f'<{task.__class__.__name__} {info}>'


def _task_get_stack(task, limit):
    frames = []
    if hasattr(task._coro, 'cr_frame'):
        # case 1: 'async def' coroutines
        f = task._coro.cr_frame
    elif hasattr(task._coro, 'gi_frame'):
        # case 2: legacy coroutines
        f = task._coro.gi_frame
    elif hasattr(task._coro, 'ag_frame'):
        # case 3: async generators
        f = task._coro.ag_frame
    else:
        # case 4: unknown objects
        f = None
    if f is not None:
        while f is not None:
            if limit is not None:
                if limit <= 0:
                    break
                limit -= 1
            frames.append(f)
            f = f.f_back
        frames.reverse()
    elif task._exception is not None:
        tb = task._exception.__traceback__
        while tb is not None:
            if limit is not None:
                if limit <= 0:
                    break
                limit -= 1
            frames.append(tb.tb_frame)
            tb = tb.tb_next
    return frames


def _task_print_stack(task, limit, file):
    extracted_list = []
    checked = set()
    for f in task.get_stack(limit=limit):
        lineno = f.f_lineno
        co = f.f_code
        filename = co.co_filename
        name = co.co_name
        if filename not in checked:
            checked.add(filename)
            linecache.checkcache(filename)
        line = linecache.getline(filename, lineno, f.f_globals)
        extracted_list.append((filename, lineno, name, line))

    exc = task._exception
    if not extracted_list:
        print(f'No stack for {task!r}', file=file)
    elif exc is not None:
        print(f'Traceback for {task!r} (most recent call last):', file=file)
    else:
        print(f'Stack for {task!r} (most recent call last):', file=file)

    traceback.print_list(extracted_list, file=file)
    if exc is not None:
        for line in traceback.format_exception_only(exc.__class__, exc):
            print(line, file=file, end='')

Directory Contents

Dirs: 1 × Files: 33

Name Size Perms Modified Actions
- drwxr-xr-x 2026-01-08 23:02:23
Edit Download
76.73 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
1.93 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
8.66 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
2.61 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
1.38 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
3.26 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
28.65 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
1.71 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
2.35 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
14.00 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
18.55 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
124 B lrw-r--r-- 2025-10-09 11:07:00
Edit Download
481 B lrw-r--r-- 2025-10-09 11:07:00
Edit Download
32.71 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
6.79 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
7.79 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
7.06 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
47.20 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
31.15 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
6.91 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
26.97 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
7.56 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
9.33 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
36.49 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
790 B lrw-r--r-- 2025-10-09 11:07:00
Edit Download
5.20 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
10.47 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
2.42 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
51.88 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
31.82 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
4.94 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
1.19 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download
3.41 KB lrw-r--r-- 2025-10-09 11:07:00
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).
© 2026 REDROOM — Secure File Manager. All rights reserved. Built with ❤️ & Red Dark UI