__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
�

*�_i�4����SrSSKrSSKrSSKrSSKr/SQrSrSrSr\Rr
\rSr
Sr"S	S
5rSS\
\S4SjrSS\
\\S4S
jrSSS.Sjjr\S:Xa\R("\"55 gg)a9Tool for measuring execution time of small code snippets.

This module avoids a number of common traps for measuring execution
times.  See also Tim Peters' introduction to the Algorithms chapter in
the Python Cookbook, published by O'Reilly.

Library usage: see the Timer class.

Command line usage:
    python timeit.py [-n N] [-r N] [-s S] [-p] [-h] [--] [statement]

Options:
  -n/--number N: how many times to execute 'statement' (default: see below)
  -r/--repeat N: how many times to repeat the timer (default 5)
  -s/--setup S: statement to be executed once initially (default 'pass').
                Execution time of this setup statement is NOT timed.
  -p/--process: use time.process_time() (default is time.perf_counter())
  -v/--verbose: print raw timing results; repeat for more digits precision
  -u/--unit: set the output time unit (nsec, usec, msec, or sec)
  -h/--help: print this usage message and exit
  --: separate options from statement, use when statement starts with -
  statement: statement to be timed (default 'pass')

A multi-line statement may be given by specifying each line as a
separate argument; indented lines are possible by enclosing an
argument in quotes and using leading spaces.  Multiple -s options are
treated similarly.

If -n is not given, a suitable number of loops is calculated by trying
increasing numbers from the sequence 1, 2, 5, 10, 20, 50, ... until the
total time is at least 0.2 seconds.

Note: there is a certain baseline overhead associated with executing a
pass statement.  It differs between versions.  The code here doesn't try
to hide it, but you should be aware of it.  The baseline overhead can be
measured by invoking the program without arguments.

Classes:

    Timer

Functions:

    timeit(string, string) -> float
    repeat(string, string) -> list
    default_timer() -> float

�N)�Timer�timeit�repeat�
default_timerz<timeit-src>i@B�z�
def inner(_it, _timer{init}):
    {setup}
    _t0 = _timer()
    for _i in _it:
        {stmt}
        pass
    _t1 = _timer()
    return _t1 - _t0
c�2�URSSSU--5$)z*Helper to reindent a multi-line statement.�
� )�replace)�src�indents  �/usr/lib/python3.13/timeit.py�reindentrQs���;�;�t�T�C�&�L�0�1�1�c�X�\rSrSrSrSS\S4SjrSSjr\4Sjr	\
\4SjrSS	jrS
r
g)r�Va�Class for timing execution speed of small code snippets.

The constructor takes a statement to be timed, an additional
statement used for setup, and a timer function.  Both statements
default to 'pass'; the timer function is platform-dependent (see
module doc string).  If 'globals' is specified, the code will be
executed within that namespace (as opposed to inside timeit's
namespace).

To measure the execution time of the first statement, use the
timeit() method.  The repeat() method is a convenience to call
timeit() multiple times and return a list of results.

The statements may contain newlines, as long as they don't contain
multi-line string literals.
�passNc�2�X0l0nUc
[5OUnSn[U[5(a#[	U[
S5 US-n[
US5nO)[U5(aX%S'US-
nSnSnO[S	5e[U[5(a [	X�-[
S5 [
US
5nO'[U5(aXS'US-
nS
nO[S5e[RXUS9n	X�l[	U	[
S5n
[X�U5 USUl
g)z#Constructor.  See class doc string.N��execr	��_setupz, _setup=_setupz_setup()z&setup is neither a string nor callable��_stmtz
, _stmt=_stmtz_stmt()z%stmt is neither a string nor callable)�stmt�setup�init�inner)�timer�_globals�
isinstance�str�compile�dummy_src_namer�callable�
ValueError�template�formatrrr)�selfrrr�globals�local_ns�	global_nsr�
stmtprefixr�codes           r�__init__�Timer.__init__hs���
���")�/�H�J�w�	����e�S�!�!��E�>�6�2����J��U�A�&�E�
�e�_�_�!&�X���%�%�D��J��E��E�F�F��d�C� � ��J�%�~�v�>��D�!�$�D�
�d�^�^� $�W���O�#�D��D��D�E�E��o�o�4�4�o�@�����s�N�F�3���T�h�'��g�&��
rc���SSKnSSKnURbG[UR5SURR	S5[
4UR[
'URUS9 g)a�Helper to print a traceback from the timed code.

Typical use:

    t = Timer(...)       # outside the try/except
    try:
        t.timeit(...)    # or t.repeat(...)
    except:
        t.print_exc()

The advantage over the standard traceback is that source lines
in the compiled template will be displayed.

The optional file argument directs where the traceback is
sent; it defaults to sys.stderr.
rNr	��file)�	linecache�	tracebackr�len�splitr$�cache�	print_exc)r)r3r4r5s    rr9�Timer.print_exc�sU��"	$��8�8��/2�4�8�8�}�/3�/3�x�x�~�~�d�/C�/=�/?�I�O�O�N�+�	�����&rc�<�[R"SU5n[R"5n[R"5 URX R5nU(a[R"5 U$!U(a[R"5 ff=f)a�Time 'number' executions of the main statement.

To be precise, this executes the setup statement once, and
then returns the time it takes to execute the main statement
a number of times, as float seconds if using the default timer.   The
argument is the number of times through the loop, defaulting
to one million.  The main statement, the setup statement and
the timer function to be used are passed to the constructor.
N)�	itertoolsr�gc�	isenabled�disablerr�enable)r)�number�it�gcold�timings     rr�Timer.timeit�sg���
�
�d�F�
+�������
�
�
��	��Z�Z��J�J�/�F���	�	���
����	�	���s�A<�<Bc�r�/n[U5H%nURU5nURU5 M' U$)ahCall timeit() a few times.

This is a convenience function that calls the timeit()
repeatedly, returning a list of results.  The first argument
specifies how many times to call timeit(), defaulting to 5;
the second argument specifies the timer argument, defaulting
to one million.

Note: it's tempting to calculate mean and standard deviation
from the result vector and report these.  However, this is not
very useful.  In a typical case, the lowest value gives a
lower bound for how fast your machine can run the given code
snippet; higher values in the result vector are typically not
caused by variability in Python's speed, but by other
processes interfering with your timing accuracy.  So the min()
of the result is probably the only number you should be
interested in.  After that, you should look at the entire
vector and apply common sense rather than statistics.
)�ranger�append)r)rrA�r�i�ts      rr�Timer.repeat�s7��(
���v��A����F�#�A�
�H�H�Q�K���rc��SnSH2nX#-nURU5nU(aU"XE5 US:�dM/XE4s $ US-nM?)aoReturn the number of loops and time taken so that total time >= 0.2.

Calls the timeit method with increasing numbers from the sequence
1, 2, 5, 10, 20, 50, ... until the time taken is at least 0.2
second.  Returns (number, time_taken).

If *callback* is given and is not None, it will be called after
each trial with two arguments: ``callback(number, time_taken)``.
�)rN�rg�������?�
)r)r)�callbackrJ�jrA�
time_takens      r�	autorange�Timer.autorange�sW��
��������!�[�[��0�
���V�0���$�"�/�/�
�
��G�A�r)rrr�N)�__name__�
__module__�__qualname__�__firstlineno__�__doc__rr/r9�default_numberr�default_repeatrrT�__static_attributes__�rrrrVs9���"#�&�
��!'�F'�6+��(+�>��4rrrc�8�[XX$5RU5$)zCConvenience function to create Timer object and call timeit method.)rr)rrrrAr*s     rrr�s����e�-�4�4�V�<�<rc�8�[XX%5RX45$)zCConvenience function to create Timer object and call repeat method.)rr)rrrrrAr*s      rrr�s����e�-�4�4�V�D�Dr)�_wrap_timerc	�^^^�Uc[RSSnSSKnURUS/SQ5up0[
nSR
U5=(d S	nSn/n[n	Sn
SmS
SSS
S.mSmUH�up�US;a[U5nUS;aURU5 US;a#UT;aUmO[	S[RS9  gUS;a[U5n	U	S::aSn	US;a[RnUS;aU
(aTS-
mU
S-
n
US;dM�[	[SS9  g SR
U5=(d S	nSSKn
[RR!SU
R"5 UbU"U5n[%XhU5nUS:Xa5SnU
(aU4SjnUR'U5unnU
(a
[	5 UR+X�5nUUU4SjnU
(a1[	SSR
[-UU55-5 [	5 UVs/sHnUU-PM
 nn[/U5n[	SXwS:waS OS!U	U"U54-5 [/U5n[1U5nUUS"-:�a1SSKnUR5S#U"U5<S$U"U5<S%3[6S!S5 g!URa n[	U5 [	S5 SnAgSnAff=f! UR)5 g=f! UR)5 g=fs snf)&agMain program, used when run as a script.

The optional 'args' argument specifies the command line to be parsed,
defaulting to sys.argv[1:].

The return value is an exit code to be passed to sys.exit(); it
may be None to indicate success.

When an exception happens during timing, a traceback is printed to
stderr and the return value is 1.  Exceptions at other times
(including the template compilation) are not caught.

'_wrap_timer' is an internal interface used for unit testing.  If it
is not None, it must be a callable that accepts a timer function
and returns another timer function (used for unit testing).
NrNrzn:u:s:r:pvh)znumber=zsetup=zrepeat=�process�verbosezunit=�helpz#use -h/--help for command line helprOr	rg��&�.>g���ư>g����MbP?g�?)�nsec�usec�msec�sec�)z-nz--number)z-sz--setup)z-uz--unitz:Unrecognized unit. Please select nsec, usec, msec, or sec.r2)z-rz--repeat)z-pz	--process)z-vz	--verbose)z-hz--helpr
)�endc	�Z>�SnUS:gn[URX(aSOSUTS95 g)Nz%{num} loop{s} -> {secs:.{prec}g} secsrN�sr)�numrn�secs�prec)�printr()rArS�msg�plural�	precisions    �rrQ�main.<locals>.callbackDs8���=�� �A�+���c�j�j�V�f�s�"�&0�y�!�B�Crc��>�TnUbTUnOFTR5VVs/sHupX!4PM
 nnnURSS9 UHup!X:�dM O STUW-W4-$s snnf)NT)�reversez%.*g %s)�items�sort)�dt�unit�scale�scalesru�	time_unit�unitss    ���r�format_time�main.<locals>.format_timeXsu��������$�K�E�7<�{�{�}�E�}���u�m�}�F�E��K�K��K�%�%����;�� &��I�r�E�z�4�8�8�8��
Fs�Az
raw times: %sz, z"%d loop%s, best of %d: %s per looprnrrz8The test results are likely unreliable. The worst time (z6) was more than four times slower than the best time (z).)�sys�argv�getopt�errorrrr�joinr]�intrH�stderr�time�process_timer[�os�path�insert�curdirrrTr9r�map�min�max�warnings�
warn_explicit�UserWarning)�argsrbr��opts�errrrrArrre�o�ar�rKrQ�_�raw_timingsr�r{�timings�best�worstr�rurr�s                        @@@r�mainr��s����"�|��x�x���|�����]�]�4��$K�L�
��
�E��9�9�T�?�$�f�D�
�F��E�
�F��G��I��4��c�B�E��I�����"�"���V�F��!�!��L�L��O�� � ��E�z��	��R��:�:�'���"�"���V�F���{����#�#��%�%�E��#�#���Q��	��q�L�G�� � ��'�s�#��1�2
�I�I�e��&��E�
��H�H�O�O�A�r�y�y�!����E�"��
�d�5�!�A�
��{����
C�
	����H�-�I�F�A�
��G���h�h�v�.��
9��
�o��	�	�#�k�;�*G� H�H�I�
��%0�1�[�r�r�F�{�[�G�1��w�<�D�	�
.�
�a�K�S�R�
�[��&�
(�(�)��w�<�D���L�E���q�������#.�e�"4�k�$�6G� I� +�B��		3�
��W�<�<��
�c�
�
�3�4�����z	�
�K�K�M����	���
���&2s5�J!�K�K+�L�!K�1K�K�K(�+K?�__main__rV)r[r=r<r�r��__all__r$r\r]�perf_counterrr*r r'rrrrr�rW�exitr_rr�<module>r�s���/�b
��
��
8���������!�!�
���
	��2�
Q�Q�h�f�M� �$�=��f�M� ���E�C�4�C�L�z���H�H�T�V��r

Filemanager

Name Type Size Permission Actions
__future__.cpython-313.pyc File 4.61 KB 0644
__hello__.cpython-313.pyc File 966 B 0644
_aix_support.cpython-313.pyc File 4.61 KB 0644
_android_support.cpython-313.pyc File 7.44 KB 0644
_apple_support.cpython-313.pyc File 3.4 KB 0644
_collections_abc.cpython-313.pyc File 45.6 KB 0644
_colorize.cpython-313.pyc File 3.92 KB 0644
_compat_pickle.cpython-313.pyc File 7.02 KB 0644
_compression.cpython-313.pyc File 7.62 KB 0644
_distutils_system_mod.cpython-313.pyc File 7.89 KB 0644
_ios_support.cpython-313.pyc File 2.65 KB 0644
_markupbase.cpython-313.pyc File 12.14 KB 0644
_opcode_metadata.cpython-313.pyc File 10.43 KB 0644
_osx_support.cpython-313.pyc File 17.7 KB 0644
_py_abc.cpython-313.pyc File 7.02 KB 0644
_pydatetime.cpython-313.pyc File 92.36 KB 0644
_pydecimal.cpython-313.pyc File 211.95 KB 0644
_pyio.cpython-313.pyc File 108.59 KB 0644
_pylong.cpython-313.pyc File 10.9 KB 0644
_sitebuiltins.cpython-313.pyc File 4.79 KB 0644
_strptime.cpython-313.pyc File 28.04 KB 0644
_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc File 60.07 KB 0644
_sysconfigdata__x86_64-linux-gnu.cpython-313.pyc File 60.06 KB 0644
_threading_local.cpython-313.pyc File 8.19 KB 0644
_weakrefset.cpython-313.pyc File 11.77 KB 0644
abc.cpython-313.pyc File 7.73 KB 0644
antigravity.cpython-313.pyc File 985 B 0644
argparse.cpython-313.pyc File 102.11 KB 0644
ast.cpython-313.pyc File 100.56 KB 0644
base64.cpython-313.pyc File 25.21 KB 0644
bdb.cpython-313.pyc File 39.61 KB 0644
bisect.cpython-313.pyc File 3.42 KB 0644
bz2.cpython-313.pyc File 14.81 KB 0644
cProfile.cpython-313.pyc File 8.46 KB 0644
calendar.cpython-313.pyc File 38.76 KB 0644
cmd.cpython-313.pyc File 18.52 KB 0644
code.cpython-313.pyc File 15.41 KB 0644
codecs.cpython-313.pyc File 39.59 KB 0644
codeop.cpython-313.pyc File 6.48 KB 0644
colorsys.cpython-313.pyc File 4.4 KB 0644
compileall.cpython-313.pyc File 20.22 KB 0644
configparser.cpython-313.pyc File 67.32 KB 0644
contextlib.cpython-313.pyc File 29.78 KB 0644
contextvars.cpython-313.pyc File 261 B 0644
copy.cpython-313.pyc File 10.38 KB 0644
copyreg.cpython-313.pyc File 7.36 KB 0644
csv.cpython-313.pyc File 20.21 KB 0644
dataclasses.cpython-313.pyc File 46.7 KB 0644
datetime.cpython-313.pyc File 411 B 0644
decimal.cpython-313.pyc File 2.93 KB 0644
difflib.cpython-313.pyc File 70.35 KB 0644
dis.cpython-313.pyc File 46.4 KB 0644
doctest.cpython-313.pyc File 105.01 KB 0644
enum.cpython-313.pyc File 83.7 KB 0644
filecmp.cpython-313.pyc File 14.67 KB 0644
fileinput.cpython-313.pyc File 20.15 KB 0644
fnmatch.cpython-313.pyc File 6.64 KB 0644
fractions.cpython-313.pyc File 37.42 KB 0644
ftplib.cpython-313.pyc File 41.34 KB 0644
functools.cpython-313.pyc File 41.26 KB 0644
genericpath.cpython-313.pyc File 7.63 KB 0644
getopt.cpython-313.pyc File 8.27 KB 0644
getpass.cpython-313.pyc File 7.14 KB 0644
gettext.cpython-313.pyc File 22.35 KB 0644
glob.cpython-313.pyc File 23.11 KB 0644
graphlib.cpython-313.pyc File 9.96 KB 0644
gzip.cpython-313.pyc File 31.23 KB 0644
hashlib.cpython-313.pyc File 7.99 KB 0644
heapq.cpython-313.pyc File 17.35 KB 0644
hmac.cpython-313.pyc File 10.41 KB 0644
imaplib.cpython-313.pyc File 61.18 KB 0644
inspect.cpython-313.pyc File 132.7 KB 0644
io.cpython-313.pyc File 4.17 KB 0644
ipaddress.cpython-313.pyc File 89.47 KB 0644
keyword.cpython-313.pyc File 1.02 KB 0644
linecache.cpython-313.pyc File 8.35 KB 0644
locale.cpython-313.pyc File 57.63 KB 0644
lzma.cpython-313.pyc File 15.35 KB 0644
mailbox.cpython-313.pyc File 115.95 KB 0644
mimetypes.cpython-313.pyc File 24.31 KB 0644
modulefinder.cpython-313.pyc File 27.73 KB 0644
netrc.cpython-313.pyc File 8.93 KB 0644
ntpath.cpython-313.pyc File 26.56 KB 0644
nturl2path.cpython-313.pyc File 2.67 KB 0644
numbers.cpython-313.pyc File 13.45 KB 0644
opcode.cpython-313.pyc File 3.97 KB 0644
operator.cpython-313.pyc File 16.96 KB 0644
optparse.cpython-313.pyc File 66 KB 0644
os.cpython-313.pyc File 44.75 KB 0644
pdb.cpython-313.pyc File 103.62 KB 0644
pickle.cpython-313.pyc File 76.57 KB 0644
pickletools.cpython-313.pyc File 78.54 KB 0644
pkgutil.cpython-313.pyc File 19.49 KB 0644
platform.cpython-313.pyc File 43.63 KB 0644
plistlib.cpython-313.pyc File 42.09 KB 0644
poplib.cpython-313.pyc File 17.99 KB 0644
posixpath.cpython-313.pyc File 17.7 KB 0644
pprint.cpython-313.pyc File 29 KB 0644
profile.cpython-313.pyc File 22.03 KB 0644
pstats.cpython-313.pyc File 36.97 KB 0644
pty.cpython-313.pyc File 7.23 KB 0644
py_compile.cpython-313.pyc File 9.83 KB 0644
pyclbr.cpython-313.pyc File 14.79 KB 0644
pydoc.cpython-313.pyc File 136.68 KB 0644
queue.cpython-313.pyc File 16.94 KB 0644
quopri.cpython-313.pyc File 9.34 KB 0644
random.cpython-313.pyc File 34.43 KB 0644
reprlib.cpython-313.pyc File 10.18 KB 0644
rlcompleter.cpython-313.pyc File 8.37 KB 0644
runpy.cpython-313.pyc File 14.05 KB 0644
sched.cpython-313.pyc File 7.42 KB 0644
secrets.cpython-313.pyc File 2.45 KB 0644
selectors.cpython-313.pyc File 25.74 KB 0644
shelve.cpython-313.pyc File 12.98 KB 0644
shlex.cpython-313.pyc File 14.5 KB 0644
shutil.cpython-313.pyc File 65.87 KB 0644
signal.cpython-313.pyc File 4.44 KB 0644
site.cpython-313.pyc File 31.86 KB 0644
sitecustomize.cpython-313.pyc File 299 B 0644
smtplib.cpython-313.pyc File 46.25 KB 0644
socket.cpython-313.pyc File 41.23 KB 0644
socketserver.cpython-313.pyc File 33.84 KB 0644
sre_compile.cpython-313.pyc File 627 B 0644
sre_constants.cpython-313.pyc File 630 B 0644
sre_parse.cpython-313.pyc File 623 B 0644
ssl.cpython-313.pyc File 63.68 KB 0644
stat.cpython-313.pyc File 5.39 KB 0644
statistics.cpython-313.pyc File 69.43 KB 0644
string.cpython-313.pyc File 11.38 KB 0644
stringprep.cpython-313.pyc File 24.67 KB 0644
struct.cpython-313.pyc File 325 B 0644
subprocess.cpython-313.pyc File 79.8 KB 0644
symtable.cpython-313.pyc File 22.65 KB 0644
tabnanny.cpython-313.pyc File 12.13 KB 0644
tarfile.cpython-313.pyc File 122.79 KB 0644
tempfile.cpython-313.pyc File 48.68 KB 0644
textwrap.cpython-313.pyc File 17.51 KB 0644
this.cpython-313.pyc File 1.38 KB 0644
threading.cpython-313.pyc File 61.72 KB 0644
timeit.cpython-313.pyc File 14.29 KB 0644
token.cpython-313.pyc File 3.49 KB 0644
tokenize.cpython-313.pyc File 24.84 KB 0644
trace.cpython-313.pyc File 33.17 KB 0644
traceback.cpython-313.pyc File 69.38 KB 0644
tracemalloc.cpython-313.pyc File 26.77 KB 0644
tty.cpython-313.pyc File 2.6 KB 0644
turtle.cpython-313.pyc File 171.21 KB 0644
types.cpython-313.pyc File 15.18 KB 0644
typing.cpython-313.pyc File 150.96 KB 0644
uuid.cpython-313.pyc File 31.4 KB 0644
warnings.cpython-313.pyc File 28.85 KB 0644
wave.cpython-313.pyc File 32.44 KB 0644
weakref.cpython-313.pyc File 31.06 KB 0644
webbrowser.cpython-313.pyc File 26.26 KB 0644
zipapp.cpython-313.pyc File 10.15 KB 0644
zipimport.cpython-313.pyc File 25.89 KB 0644
Filemanager