$39 GRAYBYTE WORDPRESS FILE MANAGER $51

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 172.67.217.254 | ADMIN IP 216.73.216.180
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : mail

/opt/alt/python312/lib64/python3.12/

HOME
Current File : /opt/alt/python312/lib64/python3.12//pstats.py
"""Class for printing reports on profiled python code."""

# Written by James Roskind
# Based on prior profile module by Sjoerd Mullender...
#   which was hacked somewhat by: Guido van Rossum

# Copyright Disney Enterprises, Inc.  All Rights Reserved.
# Licensed to PSF under a Contributor Agreement
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
# either express or implied.  See the License for the specific language
# governing permissions and limitations under the License.


import sys
import os
import time
import marshal
import re

from enum import StrEnum, _simple_enum
from functools import cmp_to_key
from dataclasses import dataclass
from typing import Dict

__all__ = ["Stats", "SortKey", "FunctionProfile", "StatsProfile"]

@_simple_enum(StrEnum)
class SortKey:
    CALLS = 'calls', 'ncalls'
    CUMULATIVE = 'cumulative', 'cumtime'
    FILENAME = 'filename', 'module'
    LINE = 'line'
    NAME = 'name'
    NFL = 'nfl'
    PCALLS = 'pcalls'
    STDNAME = 'stdname'
    TIME = 'time', 'tottime'

    def __new__(cls, *values):
        value = values[0]
        obj = str.__new__(cls, value)
        obj._value_ = value
        for other_value in values[1:]:
            cls._value2member_map_[other_value] = obj
        obj._all_values = values
        return obj


@dataclass(unsafe_hash=True)
class FunctionProfile:
    ncalls: str
    tottime: float
    percall_tottime: float
    cumtime: float
    percall_cumtime: float
    file_name: str
    line_number: int

@dataclass(unsafe_hash=True)
class StatsProfile:
    '''Class for keeping track of an item in inventory.'''
    total_tt: float
    func_profiles: Dict[str, FunctionProfile]

class Stats:
    """This class is used for creating reports from data generated by the
    Profile class.  It is a "friend" of that class, and imports data either
    by direct access to members of Profile class, or by reading in a dictionary
    that was emitted (via marshal) from the Profile class.

    The big change from the previous Profiler (in terms of raw functionality)
    is that an "add()" method has been provided to combine Stats from
    several distinct profile runs.  Both the constructor and the add()
    method now take arbitrarily many file names as arguments.

    All the print methods now take an argument that indicates how many lines
    to print.  If the arg is a floating-point number between 0 and 1.0, then
    it is taken as a decimal percentage of the available lines to be printed
    (e.g., .1 means print 10% of all available lines).  If it is an integer,
    it is taken to mean the number of lines of data that you wish to have
    printed.

    The sort_stats() method now processes some additional options (i.e., in
    addition to the old -1, 0, 1, or 2 that are respectively interpreted as
    'stdname', 'calls', 'time', and 'cumulative').  It takes either an
    arbitrary number of quoted strings or SortKey enum to select the sort
    order.

    For example sort_stats('time', 'name') or sort_stats(SortKey.TIME,
    SortKey.NAME) sorts on the major key of 'internal function time', and on
    the minor key of 'the name of the function'.  Look at the two tables in
    sort_stats() and get_sort_arg_defs(self) for more examples.

    All methods return self, so you can string together commands like:
        Stats('foo', 'goo').strip_dirs().sort_stats('calls').\
                            print_stats(5).print_callers(5)
    """

    def __init__(self, *args, stream=None):
        self.stream = stream or sys.stdout
        if not len(args):
            arg = None
        else:
            arg = args[0]
            args = args[1:]
        self.init(arg)
        self.add(*args)

    def init(self, arg):
        self.all_callees = None  # calc only if needed
        self.files = []
        self.fcn_list = None
        self.total_tt = 0
        self.total_calls = 0
        self.prim_calls = 0
        self.max_name_len = 0
        self.top_level = set()
        self.stats = {}
        self.sort_arg_dict = {}
        self.load_stats(arg)
        try:
            self.get_top_level_stats()
        except Exception:
            print("Invalid timing data %s" %
                  (self.files[-1] if self.files else ''), file=self.stream)
            raise

    def load_stats(self, arg):
        if arg is None:
            self.stats = {}
            return
        elif isinstance(arg, str):
            with open(arg, 'rb') as f:
                self.stats = marshal.load(f)
            try:
                file_stats = os.stat(arg)
                arg = time.ctime(file_stats.st_mtime) + "    " + arg
            except:  # in case this is not unix
                pass
            self.files = [arg]
        elif hasattr(arg, 'create_stats'):
            arg.create_stats()
            self.stats = arg.stats
            arg.stats = {}
        if not self.stats:
            raise TypeError("Cannot create or construct a %r object from %r"
                            % (self.__class__, arg))
        return

    def get_top_level_stats(self):
        for func, (cc, nc, tt, ct, callers) in self.stats.items():
            self.total_calls += nc
            self.prim_calls  += cc
            self.total_tt    += tt
            if ("jprofile", 0, "profiler") in callers:
                self.top_level.add(func)
            if len(func_std_string(func)) > self.max_name_len:
                self.max_name_len = len(func_std_string(func))

    def add(self, *arg_list):
        if not arg_list:
            return self
        for item in reversed(arg_list):
            if type(self) != type(item):
                item = Stats(item)
            self.files += item.files
            self.total_calls += item.total_calls
            self.prim_calls += item.prim_calls
            self.total_tt += item.total_tt
            for func in item.top_level:
                self.top_level.add(func)

            if self.max_name_len < item.max_name_len:
                self.max_name_len = item.max_name_len

            self.fcn_list = None

            for func, stat in item.stats.items():
                if func in self.stats:
                    old_func_stat = self.stats[func]
                else:
                    old_func_stat = (0, 0, 0, 0, {},)
                self.stats[func] = add_func_stats(old_func_stat, stat)
        return self

    def dump_stats(self, filename):
        """Write the profile data to a file we know how to load back."""
        with open(filename, 'wb') as f:
            marshal.dump(self.stats, f)

    # list the tuple indices and directions for sorting,
    # along with some printable description
    sort_arg_dict_default = {
              "calls"     : (((1,-1),              ), "call count"),
              "ncalls"    : (((1,-1),              ), "call count"),
              "cumtime"   : (((3,-1),              ), "cumulative time"),
              "cumulative": (((3,-1),              ), "cumulative time"),
              "filename"  : (((4, 1),              ), "file name"),
              "line"      : (((5, 1),              ), "line number"),
              "module"    : (((4, 1),              ), "file name"),
              "name"      : (((6, 1),              ), "function name"),
              "nfl"       : (((6, 1),(4, 1),(5, 1),), "name/file/line"),
              "pcalls"    : (((0,-1),              ), "primitive call count"),
              "stdname"   : (((7, 1),              ), "standard name"),
              "time"      : (((2,-1),              ), "internal time"),
              "tottime"   : (((2,-1),              ), "internal time"),
              }

    def get_sort_arg_defs(self):
        """Expand all abbreviations that are unique."""
        if not self.sort_arg_dict:
            self.sort_arg_dict = dict = {}
            bad_list = {}
            for word, tup in self.sort_arg_dict_default.items():
                fragment = word
                while fragment:
                    if fragment in dict:
                        bad_list[fragment] = 0
                        break
                    dict[fragment] = tup
                    fragment = fragment[:-1]
            for word in bad_list:
                del dict[word]
        return self.sort_arg_dict

    def sort_stats(self, *field):
        if not field:
            self.fcn_list = 0
            return self
        if len(field) == 1 and isinstance(field[0], int):
            # Be compatible with old profiler
            field = [ {-1: "stdname",
                       0:  "calls",
                       1:  "time",
                       2:  "cumulative"}[field[0]] ]
        elif len(field) >= 2:
            for arg in field[1:]:
                if type(arg) != type(field[0]):
                    raise TypeError("Can't have mixed argument type")

        sort_arg_defs = self.get_sort_arg_defs()

        sort_tuple = ()
        self.sort_type = ""
        connector = ""
        for word in field:
            if isinstance(word, SortKey):
                word = word.value
            sort_tuple = sort_tuple + sort_arg_defs[word][0]
            self.sort_type += connector + sort_arg_defs[word][1]
            connector = ", "

        stats_list = []
        for func, (cc, nc, tt, ct, callers) in self.stats.items():
            stats_list.append((cc, nc, tt, ct) + func +
                              (func_std_string(func), func))

        stats_list.sort(key=cmp_to_key(TupleComp(sort_tuple).compare))

        self.fcn_list = fcn_list = []
        for tuple in stats_list:
            fcn_list.append(tuple[-1])
        return self

    def reverse_order(self):
        if self.fcn_list:
            self.fcn_list.reverse()
        return self

    def strip_dirs(self):
        oldstats = self.stats
        self.stats = newstats = {}
        max_name_len = 0
        for func, (cc, nc, tt, ct, callers) in oldstats.items():
            newfunc = func_strip_path(func)
            if len(func_std_string(newfunc)) > max_name_len:
                max_name_len = len(func_std_string(newfunc))
            newcallers = {}
            for func2, caller in callers.items():
                newcallers[func_strip_path(func2)] = caller

            if newfunc in newstats:
                newstats[newfunc] = add_func_stats(
                                        newstats[newfunc],
                                        (cc, nc, tt, ct, newcallers))
            else:
                newstats[newfunc] = (cc, nc, tt, ct, newcallers)
        old_top = self.top_level
        self.top_level = new_top = set()
        for func in old_top:
            new_top.add(func_strip_path(func))

        self.max_name_len = max_name_len

        self.fcn_list = None
        self.all_callees = None
        return self

    def calc_callees(self):
        if self.all_callees:
            return
        self.all_callees = all_callees = {}
        for func, (cc, nc, tt, ct, callers) in self.stats.items():
            if not func in all_callees:
                all_callees[func] = {}
            for func2, caller in callers.items():
                if not func2 in all_callees:
                    all_callees[func2] = {}
                all_callees[func2][func]  = caller
        return

    #******************************************************************
    # The following functions support actual printing of reports
    #******************************************************************

    # Optional "amount" is either a line count, or a percentage of lines.

    def eval_print_amount(self, sel, list, msg):
        new_list = list
        if isinstance(sel, str):
            try:
                rex = re.compile(sel)
            except re.error:
                msg += "   <Invalid regular expression %r>\n" % sel
                return new_list, msg
            new_list = []
            for func in list:
                if rex.search(func_std_string(func)):
                    new_list.append(func)
        else:
            count = len(list)
            if isinstance(sel, float) and 0.0 <= sel < 1.0:
                count = int(count * sel + .5)
                new_list = list[:count]
            elif isinstance(sel, int) and 0 <= sel < count:
                count = sel
                new_list = list[:count]
        if len(list) != len(new_list):
            msg += "   List reduced from %r to %r due to restriction <%r>\n" % (
                len(list), len(new_list), sel)

        return new_list, msg

    def get_stats_profile(self):
        """This method returns an instance of StatsProfile, which contains a mapping
        of function names to instances of FunctionProfile. Each FunctionProfile
        instance holds information related to the function's profile such as how
        long the function took to run, how many times it was called, etc...
        """
        func_list = self.fcn_list[:] if self.fcn_list else list(self.stats.keys())
        if not func_list:
            return StatsProfile(0, {})

        total_tt = float(f8(self.total_tt))
        func_profiles = {}
        stats_profile = StatsProfile(total_tt, func_profiles)

        for func in func_list:
            cc, nc, tt, ct, callers = self.stats[func]
            file_name, line_number, func_name = func
            ncalls = str(nc) if nc == cc else (str(nc) + '/' + str(cc))
            tottime = float(f8(tt))
            percall_tottime = -1 if nc == 0 else float(f8(tt/nc))
            cumtime = float(f8(ct))
            percall_cumtime = -1 if cc == 0 else float(f8(ct/cc))
            func_profile = FunctionProfile(
                ncalls,
                tottime, # time spent in this function alone
                percall_tottime,
                cumtime, # time spent in the function plus all functions that this function called,
                percall_cumtime,
                file_name,
                line_number
            )
            func_profiles[func_name] = func_profile

        return stats_profile

    def get_print_list(self, sel_list):
        width = self.max_name_len
        if self.fcn_list:
            stat_list = self.fcn_list[:]
            msg = "   Ordered by: " + self.sort_type + '\n'
        else:
            stat_list = list(self.stats.keys())
            msg = "   Random listing order was used\n"

        for selection in sel_list:
            stat_list, msg = self.eval_print_amount(selection, stat_list, msg)

        count = len(stat_list)

        if not stat_list:
            return 0, stat_list
        print(msg, file=self.stream)
        if count < len(self.stats):
            width = 0
            for func in stat_list:
                if  len(func_std_string(func)) > width:
                    width = len(func_std_string(func))
        return width+2, stat_list

    def print_stats(self, *amount):
        for filename in self.files:
            print(filename, file=self.stream)
        if self.files:
            print(file=self.stream)
        indent = ' ' * 8
        for func in self.top_level:
            print(indent, func_get_function_name(func), file=self.stream)

        print(indent, self.total_calls, "function calls", end=' ', file=self.stream)
        if self.total_calls != self.prim_calls:
            print("(%d primitive calls)" % self.prim_calls, end=' ', file=self.stream)
        print("in %.3f seconds" % self.total_tt, file=self.stream)
        print(file=self.stream)
        width, list = self.get_print_list(amount)
        if list:
            self.print_title()
            for func in list:
                self.print_line(func)
            print(file=self.stream)
            print(file=self.stream)
        return self

    def print_callees(self, *amount):
        width, list = self.get_print_list(amount)
        if list:
            self.calc_callees()

            self.print_call_heading(width, "called...")
            for func in list:
                if func in self.all_callees:
                    self.print_call_line(width, func, self.all_callees[func])
                else:
                    self.print_call_line(width, func, {})
            print(file=self.stream)
            print(file=self.stream)
        return self

    def print_callers(self, *amount):
        width, list = self.get_print_list(amount)
        if list:
            self.print_call_heading(width, "was called by...")
            for func in list:
                cc, nc, tt, ct, callers = self.stats[func]
                self.print_call_line(width, func, callers, "<-")
            print(file=self.stream)
            print(file=self.stream)
        return self

    def print_call_heading(self, name_size, column_title):
        print("Function ".ljust(name_size) + column_title, file=self.stream)
        # print sub-header only if we have new-style callers
        subheader = False
        for cc, nc, tt, ct, callers in self.stats.values():
            if callers:
                value = next(iter(callers.values()))
                subheader = isinstance(value, tuple)
                break
        if subheader:
            print(" "*name_size + "    ncalls  tottime  cumtime", file=self.stream)

    def print_call_line(self, name_size, source, call_dict, arrow="->"):
        print(func_std_string(source).ljust(name_size) + arrow, end=' ', file=self.stream)
        if not call_dict:
            print(file=self.stream)
            return
        clist = sorted(call_dict.keys())
        indent = ""
        for func in clist:
            name = func_std_string(func)
            value = call_dict[func]
            if isinstance(value, tuple):
                nc, cc, tt, ct = value
                if nc != cc:
                    substats = '%d/%d' % (nc, cc)
                else:
                    substats = '%d' % (nc,)
                substats = '%s %s %s  %s' % (substats.rjust(7+2*len(indent)),
                                             f8(tt), f8(ct), name)
                left_width = name_size + 1
            else:
                substats = '%s(%r) %s' % (name, value, f8(self.stats[func][3]))
                left_width = name_size + 3
            print(indent*left_width + substats, file=self.stream)
            indent = " "

    def print_title(self):
        print('   ncalls  tottime  percall  cumtime  percall', end=' ', file=self.stream)
        print('filename:lineno(function)', file=self.stream)

    def print_line(self, func):  # hack: should print percentages
        cc, nc, tt, ct, callers = self.stats[func]
        c = str(nc)
        if nc != cc:
            c = c + '/' + str(cc)
        print(c.rjust(9), end=' ', file=self.stream)
        print(f8(tt), end=' ', file=self.stream)
        if nc == 0:
            print(' '*8, end=' ', file=self.stream)
        else:
            print(f8(tt/nc), end=' ', file=self.stream)
        print(f8(ct), end=' ', file=self.stream)
        if cc == 0:
            print(' '*8, end=' ', file=self.stream)
        else:
            print(f8(ct/cc), end=' ', file=self.stream)
        print(func_std_string(func), file=self.stream)

class TupleComp:
    """This class provides a generic function for comparing any two tuples.
    Each instance records a list of tuple-indices (from most significant
    to least significant), and sort direction (ascending or descending) for
    each tuple-index.  The compare functions can then be used as the function
    argument to the system sort() function when a list of tuples need to be
    sorted in the instances order."""

    def __init__(self, comp_select_list):
        self.comp_select_list = comp_select_list

    def compare (self, left, right):
        for index, direction in self.comp_select_list:
            l = left[index]
            r = right[index]
            if l < r:
                return -direction
            if l > r:
                return direction
        return 0


#**************************************************************************
# func_name is a triple (file:string, line:int, name:string)

def func_strip_path(func_name):
    filename, line, name = func_name
    return os.path.basename(filename), line, name

def func_get_function_name(func):
    return func[2]

def func_std_string(func_name): # match what old profile produced
    if func_name[:2] == ('~', 0):
        # special case for built-in functions
        name = func_name[2]
        if name.startswith('<') and name.endswith('>'):
            return '{%s}' % name[1:-1]
        else:
            return name
    else:
        return "%s:%d(%s)" % func_name

#**************************************************************************
# The following functions combine statistics for pairs functions.
# The bulk of the processing involves correctly handling "call" lists,
# such as callers and callees.
#**************************************************************************

def add_func_stats(target, source):
    """Add together all the stats for two profile entries."""
    cc, nc, tt, ct, callers = source
    t_cc, t_nc, t_tt, t_ct, t_callers = target
    return (cc+t_cc, nc+t_nc, tt+t_tt, ct+t_ct,
              add_callers(t_callers, callers))

def add_callers(target, source):
    """Combine two caller lists in a single list."""
    new_callers = {}
    for func, caller in target.items():
        new_callers[func] = caller
    for func, caller in source.items():
        if func in new_callers:
            if isinstance(caller, tuple):
                # format used by cProfile
                new_callers[func] = tuple(i + j for i, j in zip(caller, new_callers[func]))
            else:
                # format used by profile
                new_callers[func] += caller
        else:
            new_callers[func] = caller
    return new_callers

def count_calls(callers):
    """Sum the caller statistics to get total number of calls received."""
    nc = 0
    for calls in callers.values():
        nc += calls
    return nc

#**************************************************************************
# The following functions support printing of reports
#**************************************************************************

def f8(x):
    return "%8.3f" % x

#**************************************************************************
# Statistics browser added by ESR, April 2001
#**************************************************************************

if __name__ == '__main__':
    import cmd
    try:
        import readline
    except ImportError:
        pass

    class ProfileBrowser(cmd.Cmd):
        def __init__(self, profile=None):
            cmd.Cmd.__init__(self)
            self.prompt = "% "
            self.stats = None
            self.stream = sys.stdout
            if profile is not None:
                self.do_read(profile)

        def generic(self, fn, line):
            args = line.split()
            processed = []
            for term in args:
                try:
                    processed.append(int(term))
                    continue
                except ValueError:
                    pass
                try:
                    frac = float(term)
                    if frac > 1 or frac < 0:
                        print("Fraction argument must be in [0, 1]", file=self.stream)
                        continue
                    processed.append(frac)
                    continue
                except ValueError:
                    pass
                processed.append(term)
            if self.stats:
                getattr(self.stats, fn)(*processed)
            else:
                print("No statistics object is loaded.", file=self.stream)
            return 0
        def generic_help(self):
            print("Arguments may be:", file=self.stream)
            print("* An integer maximum number of entries to print.", file=self.stream)
            print("* A decimal fractional number between 0 and 1, controlling", file=self.stream)
            print("  what fraction of selected entries to print.", file=self.stream)
            print("* A regular expression; only entries with function names", file=self.stream)
            print("  that match it are printed.", file=self.stream)

        def do_add(self, line):
            if self.stats:
                try:
                    self.stats.add(line)
                except OSError as e:
                    print("Failed to load statistics for %s: %s" % (line, e), file=self.stream)
            else:
                print("No statistics object is loaded.", file=self.stream)
            return 0
        def help_add(self):
            print("Add profile info from given file to current statistics object.", file=self.stream)

        def do_callees(self, line):
            return self.generic('print_callees', line)
        def help_callees(self):
            print("Print callees statistics from the current stat object.", file=self.stream)
            self.generic_help()

        def do_callers(self, line):
            return self.generic('print_callers', line)
        def help_callers(self):
            print("Print callers statistics from the current stat object.", file=self.stream)
            self.generic_help()

        def do_EOF(self, line):
            print("", file=self.stream)
            return 1
        def help_EOF(self):
            print("Leave the profile browser.", file=self.stream)

        def do_quit(self, line):
            return 1
        def help_quit(self):
            print("Leave the profile browser.", file=self.stream)

        def do_read(self, line):
            if line:
                try:
                    self.stats = Stats(line)
                except OSError as err:
                    print(err.args[1], file=self.stream)
                    return
                except Exception as err:
                    print(err.__class__.__name__ + ':', err, file=self.stream)
                    return
                self.prompt = line + "% "
            elif len(self.prompt) > 2:
                line = self.prompt[:-2]
                self.do_read(line)
            else:
                print("No statistics object is current -- cannot reload.", file=self.stream)
            return 0
        def help_read(self):
            print("Read in profile data from a specified file.", file=self.stream)
            print("Without argument, reload the current file.", file=self.stream)

        def do_reverse(self, line):
            if self.stats:
                self.stats.reverse_order()
            else:
                print("No statistics object is loaded.", file=self.stream)
            return 0
        def help_reverse(self):
            print("Reverse the sort order of the profiling report.", file=self.stream)

        def do_sort(self, line):
            if not self.stats:
                print("No statistics object is loaded.", file=self.stream)
                return
            abbrevs = self.stats.get_sort_arg_defs()
            if line and all((x in abbrevs) for x in line.split()):
                self.stats.sort_stats(*line.split())
            else:
                print("Valid sort keys (unique prefixes are accepted):", file=self.stream)
                for (key, value) in Stats.sort_arg_dict_default.items():
                    print("%s -- %s" % (key, value[1]), file=self.stream)
            return 0
        def help_sort(self):
            print("Sort profile data according to specified keys.", file=self.stream)
            print("(Typing `sort' without arguments lists valid keys.)", file=self.stream)
        def complete_sort(self, text, *args):
            return [a for a in Stats.sort_arg_dict_default if a.startswith(text)]

        def do_stats(self, line):
            return self.generic('print_stats', line)
        def help_stats(self):
            print("Print statistics from the current stat object.", file=self.stream)
            self.generic_help()

        def do_strip(self, line):
            if self.stats:
                self.stats.strip_dirs()
            else:
                print("No statistics object is loaded.", file=self.stream)
        def help_strip(self):
            print("Strip leading path information from filenames in the report.", file=self.stream)

        def help_help(self):
            print("Show help for a given command.", file=self.stream)

        def postcmd(self, stop, line):
            if stop:
                return stop
            return None

    if len(sys.argv) > 1:
        initprofile = sys.argv[1]
    else:
        initprofile = None
    try:
        browser = ProfileBrowser(initprofile)
        for profile in sys.argv[2:]:
            browser.do_add(profile)
        print("Welcome to the profile statistics browser.", file=browser.stream)
        browser.cmdloop()
        print("Goodbye.", file=browser.stream)
    except KeyboardInterrupt:
        pass

# That's all, folks.


Current_dir [ NOT WRITEABLE ] Document_root [ NOT WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
10 Feb 2026 9.37 AM
root / root
0755
__pycache__
--
10 Feb 2026 9.35 AM
root / linksafe
0755
asyncio
--
10 Feb 2026 9.35 AM
root / linksafe
0755
collections
--
10 Feb 2026 9.35 AM
root / linksafe
0755
concurrent
--
10 Feb 2026 9.35 AM
root / linksafe
0755
config-3.12-x86_64-linux-gnu
--
10 Feb 2026 9.37 AM
root / linksafe
0755
ctypes
--
10 Feb 2026 9.35 AM
root / linksafe
0755
curses
--
10 Feb 2026 9.35 AM
root / linksafe
0755
dbm
--
10 Feb 2026 9.35 AM
root / linksafe
0755
email
--
10 Feb 2026 9.35 AM
root / linksafe
0755
encodings
--
10 Feb 2026 9.35 AM
root / linksafe
0755
ensurepip
--
10 Feb 2026 9.35 AM
root / linksafe
0755
html
--
10 Feb 2026 9.35 AM
root / linksafe
0755
http
--
10 Feb 2026 9.35 AM
root / linksafe
0755
importlib
--
10 Feb 2026 9.35 AM
root / linksafe
0755
json
--
10 Feb 2026 9.35 AM
root / linksafe
0755
lib-dynload
--
10 Feb 2026 9.35 AM
root / linksafe
0755
lib2to3
--
10 Feb 2026 9.39 AM
root / linksafe
0755
logging
--
10 Feb 2026 9.35 AM
root / linksafe
0755
multiprocessing
--
10 Feb 2026 9.35 AM
root / linksafe
0755
pydoc_data
--
10 Feb 2026 9.35 AM
root / linksafe
0755
re
--
10 Feb 2026 9.35 AM
root / linksafe
0755
site-packages
--
10 Feb 2026 9.35 AM
root / linksafe
0755
sqlite3
--
10 Feb 2026 9.35 AM
root / linksafe
0755
tomllib
--
10 Feb 2026 9.35 AM
root / linksafe
0755
unittest
--
10 Feb 2026 9.35 AM
root / linksafe
0755
urllib
--
10 Feb 2026 9.35 AM
root / linksafe
0755
venv
--
10 Feb 2026 9.35 AM
root / linksafe
0755
wsgiref
--
10 Feb 2026 9.35 AM
root / linksafe
0755
xml
--
10 Feb 2026 9.35 AM
root / linksafe
0755
xmlrpc
--
10 Feb 2026 9.35 AM
root / linksafe
0755
zipfile
--
10 Feb 2026 9.35 AM
root / linksafe
0755
zoneinfo
--
10 Feb 2026 9.35 AM
root / linksafe
0755
LICENSE.txt
13.609 KB
9 Oct 2025 11.07 AM
root / linksafe
0644
__future__.py
5.096 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
__hello__.py
0.222 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
_aix_support.py
3.927 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
_collections_abc.py
31.337 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
_compat_pickle.py
8.556 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
_compression.py
5.548 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
_markupbase.py
14.31 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
_osx_support.py
21.507 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
_py_abc.py
6.044 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
_pydatetime.py
89.929 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
_pydecimal.py
221.956 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
_pyio.py
91.399 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
_pylong.py
10.537 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
_sitebuiltins.py
3.055 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
_strptime.py
27.728 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
_sysconfigdata__linux_x86_64-linux-gnu.py
74.759 KB
8 Jan 2026 6.19 PM
root / linksafe
0644
_sysconfigdata_d_linux_x86_64-linux-gnu.py
74.755 KB
8 Jan 2026 6.14 PM
root / linksafe
0644
_threading_local.py
7.051 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
_weakrefset.py
5.755 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
abc.py
6.385 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
aifc.py
33.409 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
antigravity.py
0.488 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
argparse.py
98.784 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
ast.py
62.941 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
base64.py
20.164 KB
8 Jan 2026 6.12 PM
root / linksafe
0755
bdb.py
32.786 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
bisect.py
3.343 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
bz2.py
11.569 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
cProfile.py
6.415 KB
8 Jan 2026 6.12 PM
root / linksafe
0755
calendar.py
25.258 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
cgi.py
33.625 KB
8 Jan 2026 6.12 PM
root / linksafe
0755
cgitb.py
12.13 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
chunk.py
5.371 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
cmd.py
14.524 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
code.py
10.705 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
codecs.py
36.006 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
codeop.py
5.77 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
colorsys.py
3.967 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
compileall.py
20.026 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
configparser.py
52.528 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
contextlib.py
26.989 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
contextvars.py
0.126 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
copy.py
8.215 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
copyreg.py
7.436 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
crypt.py
3.821 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
csv.py
16.002 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
dataclasses.py
60.63 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
datetime.py
0.262 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
decimal.py
2.739 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
difflib.py
81.414 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
dis.py
29.519 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
doctest.py
104.247 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
enum.py
79.629 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
filecmp.py
10.138 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
fileinput.py
15.346 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
fnmatch.py
5.858 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
fractions.py
37.253 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
ftplib.py
33.921 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
functools.py
37.051 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
genericpath.py
5.441 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
getopt.py
7.313 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
getpass.py
5.85 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
gettext.py
20.82 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
glob.py
8.527 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
graphlib.py
9.422 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
gzip.py
24.807 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
hashlib.py
9.13 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
heapq.py
22.484 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
hmac.py
7.535 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
imaplib.py
52.773 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
imghdr.py
4.295 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
inspect.py
124.146 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
io.py
3.498 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
ipaddress.py
79.506 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
keyword.py
1.048 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
linecache.py
5.664 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
locale.py
76.757 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
lzma.py
12.966 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
mailbox.py
77.062 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
mailcap.py
9.114 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
mimetypes.py
22.497 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
modulefinder.py
23.144 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
netrc.py
6.76 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
nntplib.py
40.124 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
ntpath.py
31.566 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
nturl2path.py
2.318 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
numbers.py
11.198 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
opcode.py
12.865 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
operator.py
10.708 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
optparse.py
58.954 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
os.py
39.864 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
pathlib.py
49.855 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
pdb.py
68.663 KB
8 Jan 2026 6.12 PM
root / linksafe
0755
pickle.py
65.343 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
pickletools.py
91.848 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
pipes.py
8.768 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
pkgutil.py
17.853 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
platform.py
42.385 KB
8 Jan 2026 6.12 PM
root / linksafe
0755
plistlib.py
27.678 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
poplib.py
14.276 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
posixpath.py
17.073 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
pprint.py
23.592 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
profile.py
22.564 KB
8 Jan 2026 6.12 PM
root / linksafe
0755
pstats.py
28.603 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
pty.py
5.993 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
py_compile.py
7.653 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
pyclbr.py
11.129 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
pydoc.py
110.861 KB
8 Jan 2026 6.12 PM
root / linksafe
0755
queue.py
11.227 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
quopri.py
7.028 KB
8 Jan 2026 6.12 PM
root / linksafe
0755
random.py
33.876 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
reprlib.py
6.98 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
rlcompleter.py
7.644 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
runpy.py
12.583 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
sched.py
6.202 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
secrets.py
1.938 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
selectors.py
19.21 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
shelve.py
8.359 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
shlex.py
13.04 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
shutil.py
55.432 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
signal.py
2.437 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
site.py
22.654 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
smtplib.py
42.524 KB
8 Jan 2026 6.12 PM
root / linksafe
0755
sndhdr.py
7.273 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
socket.py
36.929 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
socketserver.py
27.407 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
sre_compile.py
0.226 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
sre_constants.py
0.227 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
sre_parse.py
0.224 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
ssl.py
49.711 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
stat.py
5.356 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
statistics.py
49.05 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
string.py
11.51 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
stringprep.py
12.614 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
struct.py
0.251 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
subprocess.py
86.667 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
sunau.py
18.045 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
symtable.py
12.185 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
sysconfig.py
31.104 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
tabnanny.py
11.274 KB
8 Jan 2026 6.12 PM
root / linksafe
0755
tarfile.py
109.944 KB
8 Jan 2026 6.12 PM
root / linksafe
0755
telnetlib.py
22.787 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
tempfile.py
31.627 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
textwrap.py
19.256 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
this.py
0.979 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
threading.py
58.789 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
timeit.py
13.161 KB
8 Jan 2026 6.12 PM
root / linksafe
0755
token.py
2.452 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
tokenize.py
21.064 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
trace.py
28.678 KB
8 Jan 2026 6.12 PM
root / linksafe
0755
traceback.py
45.306 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
tracemalloc.py
17.624 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
tty.py
1.987 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
types.py
10.735 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
typing.py
116.051 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
uu.py
7.169 KB
8 Jan 2026 6.20 PM
root / linksafe
0644
uuid.py
28.961 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
warnings.py
21.396 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
wave.py
22.235 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
weakref.py
21.009 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
webbrowser.py
23.189 KB
8 Jan 2026 6.12 PM
root / linksafe
0755
xdrlib.py
5.803 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
zipapp.py
7.366 KB
8 Jan 2026 6.12 PM
root / linksafe
0644
zipimport.py
27.188 KB
8 Jan 2026 6.12 PM
root / linksafe
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF