403Webshell
Server IP : 80.87.202.40  /  Your IP : 216.73.216.169
Web Server : Apache
System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64
User : bitrix ( 600)
PHP Version : 8.2.27
Disable Function : NONE
MySQL : OFF |  cURL : ON |  WGET : ON |  Perl : ON |  Python : OFF |  Sudo : ON |  Pkexec : ON
Directory :  /lib64/python3.9/site-packages/mercurial/__pycache__/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /lib64/python3.9/site-packages/mercurial/__pycache__/statprof.cpython-39.pyc
a

�+�b���@s�dZddlmZmZmZddlZddlZddlZddlZddl	Z	ddl
Z
ddlZddlZddl
Z
ddlZddlmZddlmZmZejZejZgd�Zhd�Zd	d
�ZGdd�de�Ze�ZGd
d�de�ZGdd�de�Zdd�Ze
��Zdd�Z dd�Z!da"dDdd�Z#dd�Z$dd�Z%dd �Z&dEd!d"�Z'ed#d$��Z(Gd%d&�d&e�Z)Gd'd(�d(�Z*dFd*d+�Z+d,d-�Z,d.d/�Z-dGd0d1�Z.dHd3d4�Z/dId5d6�Z0iZ1d7d8�Z2d9d:�Z3dJd=d>�Z4d?d@�Z5dKdAdB�Z6e7dCk�r�e�8e6��dS)La�

statprof is intended to be a fairly simple statistical profiler for
python. It was ported directly from a statistical profiler for guile,
also named statprof, available from guile-lib [0].

[0] http://wingolog.org/software/guile-lib/statprof/

To start profiling, call statprof.start():
>>> start()

Then run whatever it is that you want to profile, for example:
>>> import test.pystone; test.pystone.pystones()

Then stop the profiling and print out the results:
>>> stop()
>>> display()
  %   cumulative      self
 time    seconds   seconds  name
 26.72      1.40      0.37  pystone.py:79:Proc0
 13.79      0.56      0.19  pystone.py:133:Proc1
 13.79      0.19      0.19  pystone.py:208:Proc8
 10.34      0.16      0.14  pystone.py:229:Func2
  6.90      0.10      0.10  pystone.py:45:__init__
  4.31      0.16      0.06  pystone.py:53:copy
    ...

All of the numerical data is statistically approximate. In the
following column descriptions, and in all of statprof, "time" refers
to execution time (both user and system), not wall clock time.

% time
    The percent of the time spent inside the procedure itself (not
    counting children).

cumulative seconds
    The total number of seconds spent in the procedure, including
    children.

self seconds
    The total number of seconds spent in the procedure itself (not
    counting children).

name
    The name of the procedure.

By default statprof keeps the data collected from previous runs. If you
want to clear the collected data, call reset():
>>> reset()

reset() can also be used to change the sampling frequency from the
default of 1000 Hz. For example, to tell statprof to sample 50 times a
second:
>>> reset(50)

This means that statprof will sample the call stack after every 1/50 of
a second of user + system time spent running on behalf of the python
process. When your process is idle (for example, blocking in a read(),
as is the case at the listener), the clock does not advance. For this
reason statprof is not currently not suitable for profiling io-bound
operations.

The profiler uses the hash of the code object itself to identify the
procedures, so it won't confuse different procedures with the same name.
They will show up as two different rows in the output.

Right now the profiler is quite simplistic.  I cannot provide
call-graphs or other higher level information.  What you see in the
table is pretty much all there is. Patches are welcome :-)


Threading
---------

Because signals only get delivered to the main thread in Python,
statprof only profiles the main thread. However because the time
reporting function uses per-process timers, the results can be
significantly off if other threads' work patterns are not similar to the
main thread's work patterns.
�)�absolute_import�division�print_functionN�)�open)�encoding�pycompat)sstartsstopsresetsdisplaysprofile>zextensions.py:closurezdispatch.py:_dispatchzpager.py:pagecmdzdispatch.py:<lambda>z
util.py:checkzdispatch.py:_runcommandzevolve.py:warnobserrorszdispatch.py:checkargszdispatch.py:_runcatchzhg.py:<module>zdispatch.py:dispatchzdispatch.py:runcommandzdispatch.py:runzcolor.py:colorcmdcCs t��}|d|d|dfS)Nrr�)�os�times)r�r�8/usr/lib64/python3.9/site-packages/mercurial/statprof.py�clock�src@s<eZdZddd�Zd
dd�Zdd�Zdd	�Zed
d��ZdS)�ProfileStateNcCs|�|�d|_dS)N�cpu)�reset�track��self�	frequencyrrr
�__init__�s
zProfileState.__init__cCsFd|_d|_|rd||_nt�|d�s0d|_nd|_d|_g|_dS)N)�rg�?�sample_interval���MbP?r)�accumulated_time�last_start_timerr�hasattr�remaining_prof_time�
profile_level�samplesrrrr
r�szProfileState.resetcCsN|d|jd|d|jdf}|jd|d|jd|df|_dS�Nrr)rr)rZ	stop_timeZ	incrementrrr
�accumulate_time�s��zProfileState.accumulate_timecCs|j|jt|j�S�N)r�timeidx�lenr�rrrr
�seconds_per_sample�szProfileState.seconds_per_samplecCs|jdkrdSdS)Nsrealrr)rr%rrr
r#�s
zProfileState.timeidx)N)N)	�__name__�
__module__�__qualname__rrr!r&�propertyr#rrrr
r�s


rc@sPeZdZiZdZdd�Zdd�Zdd�Zedd	��Z	d
d�Z
dd
�Zdd�ZdS)�CodeSite)�path�lineno�function�sourcecCs8t|t�sJ�||_||_t|t�s(J�||_d|_dSr")�
isinstance�bytesr,r-r.r/)rr,r-r.rrr
r�szCodeSite.__init__cCs.z|j|jko|j|jkWSYdS0dS)NF)r-r,)r�otherrrr
�__eq__�szCodeSite.__eq__cCst|j|jf�Sr")�hashr-r,r%rrr
�__hash__�szCodeSite.__hash__cCsF||f}z|j|WSty@||||�}||j|<|YS0dSr")�cache�KeyError)�clsr,r-r.�k�vrrr
�get�s
zCodeSite.getcCs�|jdur�|jd}zXt|jd��8}t|�D]\}}||kr,|��|_qLq,Wd�n1s`0YWnYn0|jdur�d|_|j}t|�|kr�|d|d�d}|S)Nr�rb��s...)r/r-rr,�	enumerate�stripr$)r�lengthr-�fp�i�liner/rrr
�	getsource�s 


(
zCodeSite.getsourcecCstj�|j�Sr")r
r,�basenamer%rrr
�filenameszCodeSite.filenamecCsd|��|jfS)Nz%s:%s�rGr.r%rrr
�skipnameszCodeSite.skipnameN)
r'r(r)r6�	__slots__rr3r5�classmethodr;rErGrIrrrr
r+�s
	r+c@s$eZdZdZdd�Zedd��ZdS)�Sample��stack�timecCs||_||_dSr"rM)rrNrOrrr
rszSample.__init__c	CsDg}|r:|�t�t�|jj�|jt�|jj���|j	}qt
||�Sr")�appendr+r;r�sysbytes�f_code�co_filename�f_lineno�co_name�f_backrL)r8�framerOrNrrr
�
from_frames��zSample.from_frameN)r'r(r)rJrrKrXrrrr
rLsrLcCsVtjdkrRt�}t�|�tjtj}tj�t�	||��t
�t
jtj
d�|t_dS)Nrr)�staterrr!rr#rrPrLrX�signal�	setitimer�ITIMER_PROFrr)ZsignumrW�now�	timestamprrr
�profile_signal_handler$s

r_cCsdt��sXt�}t�|�t��|}tjtj}tj	�
t�||��|t_
t�tj�qt��dSr")�
stopthread�is_setrrYr!�sys�_current_framesrr#rrPrLrXrrO�sleepr�clear)�tidr]rWr^rrr
�
samplerthread3s
rgcCs
tjdkS�Nr)rYrrrrr
�	is_activeGsri�threadrcs�|t_tjd7_tjdkr�t�t_tj}dt_|a|dkrdt�tjt	�t�
tj|p\tjd�nL|dkr�t
����fdd�t����D�d}tjt|fd	d
�t_tj��dS)z:Install the profiling signal handler, and start profiling.rN�signalrrjcsg|]\}}|�kr|�qSrr)�.0r9�f�rWrr
�
<listcomp>ar=zstart.<locals>.<listcomp>rrg)�target�args�name)rYrrrrr�
lastmechanismrZ�SIGPROFr_r[r\r�inspectZcurrentframerbrc�items�	threading�Threadrg�thread�start)Z	mechanismr�rptrfrrnr
rzNs&
��rzcCs�tjd8_tjdkr�tdkrLt�tjdd�}t�tjtj�|dt_ntdkrft	�
�tj��t�
t��dt_tj�d�}|r�t|�tS)z;Stop profiling, and uninstall the profiling signal handler.rrrkrrjNs
STATPROF_DEST)rYrrsrZr[r\rt�SIG_IGNrr`�setry�joinr!rrr�environr;�	save_data)r{Zstatprofpathrrr
�stophs

r�c	Cs|t|d��^}|�dtj�tjD]6}|j}|j}dd�|D�}|�d|d�|�f�q"Wd�n1sn0YdS)N�w+s%f %f
cSs&g|]}d�|jd|j|jg��qS)�s%d)r~r,r-r.�rl�srrr
ro�s�zsave_data.<locals>.<listcomp>s%d%s
�)r�writerYrrrOrNr~)r,�file�samplerOrN�sitesrrr
r�}s
�r�c	
Cs�t|d�����}dd�|d��D�t_gt_|dd�D]t}|�d�}t|d�}|dd�}g}|D]2}|�d�}|�t	�
|dt|d�|d��qjtj�t||��q<dS)	Nr<cSsg|]}t|��qSr)�float)rl�valuerrr
ro�r=zload_data.<locals>.<listcomp>rrr�r��)
r�read�
splitlines�splitrYrrr�rPr+r;�intrL)	r,�linesrD�partsrOZrawsitesr�ZrawsiteZ	sitepartsrrr
�	load_data�s

�r�cCs*tjdksJd��tj��t�|�dS)z�Clear out the state of the profiler.  Do not call while the
    profiler is running.

    The optional frequency argument specifies the number of samples to
    collect per second.rs'Can't reset() while statprof is runningN)rYrr+r6rer)rrrr
r�s
rccs0t�zdVWt�t�nt�t�0dSr")rzr��displayrrrr
�profile�s�r�c@sPeZdZdd�Zdd�Zdd�Zdd�Zd	d
�Zdd�Zd
d�Z	e
dd��ZdS)�	SiteStatscCs||_d|_d|_dSrh)�site�	selfcount�
totalcount�rr�rrr
r�szSiteStats.__init__cCs|jd7_dS�Nr)r�r%rrr
�addself�szSiteStats.addselfcCs|jd7_dSr�)r�r%rrr
�addtotal�szSiteStats.addtotalcCs|jttj�dS�N�d)r�r$rYrr%rrr
�selfpercent�szSiteStats.selfpercentcCs|jttj�dSr�)r�r$rYrr%rrr
�totalpercent�szSiteStats.totalpercentcCs|jt��Sr")r�rYr&r%rrr
�selfseconds�szSiteStats.selfsecondscCs|jt��Sr")r�rYr&r%rrr
�totalseconds�szSiteStats.totalsecondscCsli}|D]N}t|j�D]>\}}|�|�}|s<t|�}|||<|��|dkr|��qqdd�t�|�D�S)NrcSsg|]}|�qSrrr�rrr
ro�r=z(SiteStats.buildstats.<locals>.<listcomp>)r?rNr;r�r�r�r�
itervalues)r8r�statsr�rCr�Zsitestatrrr
�
buildstats�s
zSiteStats.buildstatsN)r'r(r)rr�r�r�r�r�r�rKr�rrrr
r��sr�c@s(eZdZdZdZdZdZdZdZdZ	dS)	�DisplayFormatsrrr�r>r	��N)
r'r(r)�ByLine�ByMethod�AboutMethod�Hotpath�
FlameGraph�Json�Chromerrrr
r��sr�r>cKsH|durt}|dur&ddlm}|j}t|j�dkrB|�d�dS|tjkrXt	||�n�|tj
krnt||�n�|tjkr�t
||fi|��nx|tjkr�t||fi|��nZ|tjkr�t||fi|��n<|tjkr�t||�n&|tjkr�t||fi|��ntd��|tjtjfv�rD|�d�|�dt|j��|�d	|j�dS)
z<Print statistics, either to stdout or the given file object.Nr)�procutilrsNo samples recorded.
zInvalid display formats---
sSample count: %d
s!Total time: %f seconds (%f wall)
)rYZutilsr��stdoutr$rr�r�r��display_by_liner��display_by_methodr��display_about_methodr��display_hotpathr��write_to_flamer��
write_to_jsonr��write_to_chrome�	Exceptionr)rB�format�data�kwargsr�rrr
r��s6








r�cCs�t�|j�}|jddd�d�|�dd�|�dd�|D]B}|j}d	|��|j|jf}|�d
|�	�|�
�|��|f�q>dS)zsPrint the profiler data with each sample line represented
    as one row in a table.  Sorted by self-time per line.TcSs|��Sr"�r���xrrr
�<lambda>r=z!display_by_line.<locals>.<lambda>��reverse�key�%5.5s %10.10s   %7.7s  %-8.8s
�s%  s
cumulativesselfr=�%5.5s  %9.9s  %8.8s  %-8.8s
�stime�secondsr�snames%s:%d:%s�%6.2f %9.2f %9.2f  %s
N)r�r�r�sortr�r�rGr-r.r�r�r�)r�rBr��statr�Z	sitelabelrrr
r�s0�������r�c	Cs�|�dd�|�dd�t�|j�}tt�}|D]$}||j��d|jj�	|�q4g}t
�|�D]V\}}d}d}	d}
|D](}||��7}|	|�
�7}	|
|��7}
q�|�	|||	|
|f�qh|jddd	�d
�|D]�}|ddkr�q�|�d
|d|d|d|df�|djddd	�d
�|dD]j}|��dk�r,|j�d�}tjjdk�rnt|t��snt
�|�}|��|�
�|jj|f}
|�d|
��q,q�dS)z�Print the profiler data with each sample function represented
    as one row in a table.  Important lines within that function are
    output as nested rows.  Sorted by self-time per line.r�r�r�r��:rTcSs|dS)Nr�rr�rrr
r�Or=z#display_by_method.<locals>.<lambda>r�r>皙�����?r�rr�r	cSs|��Sr"r�)rCrrr
r�^r=�s%33.0f%% %6.2f   line %d: %s
N)r�r�r�r�defaultdict�listr�rGr.rPr�	iteritemsr�r�r�r�rErb�version_info�majorr0r1Zbytestrr-)r�rBr�Zgroupedr�Zfunctiondata�fnameZ	sitestats�
total_cum_sec�total_self_secZ
total_percentr.r/Z	stattuplerrr
r�,sj����"����
�
�r�c
sN�durtd��d�d�vr*��d�\��d}i}i}|jD]�}t|j�D]�\}}	|	j�krJ�rl|	���krJ|d7}|t|j�dkr�|j|d}
|
|vr�||
d||
<nd||
<|	|vr�||	d||	<qJd||	<qJq<dd�t�	|�D�}|j
ddd	�d
�|D]J\}
}|�d||dt�|
���t�
|
j�|
jt�
|
�d
��f��qt�|j�}��fdd�|D�}d}
d}d}d}|D]6}|
|��7}
||��7}||��7}||��7}�q�|�dt�
��p�d�t�
��|
|||f�dd�t�	|�D�}|j
ddd	�d
�|D]4\}}|�d||d|jt�
|�d
��f��qdS)NzInvalid functionr�rrcSsg|]\}}||f�qSrr)rl�parent�countrrr
ro�r=z(display_about_method.<locals>.<listcomp>TcSs|dSr�rr�rrr
r��r=z&display_about_method.<locals>.<lambda>r�s%6.2f%%   %s:%s   line %s: %s
r��2cs.g|]&}|jj�kr�r&|j���kr|�qSr)r�r.rGr�rHrr
ro�s�sA
    %s:%s    Total: %0.2fs (%0.2f%%)    Self: %0.2fs (%0.2f%%)

s___cSsg|]\}}||f�qSrr)rl�childr�rrr
ro�r=cSs|dSr�rr�rrr
r��r=s        %6.2f%%   line %s: %s
)r�r�rr?rNr.rGr$rr�r�r��fsencoderQr-rEr�r�r�r�r�r�)r�rBr.r�Zrelevant_samples�parents�childrenr�rCr�r�r�r�r�r�Ztotal_self_percentZtotal_cum_percentr�r�rrHr
r�rs�

�
�

�������
���r�r�cs�G�fdd�dt���d��|jdj}|jD](}��|jddd�|j|�|j}q.|�dd�������fdd���jdkr���dd	�dS)
Ncs eZdZdd�Z�fdd�ZdS)z display_hotpath.<locals>.HotNodecSs||_d|_i|_dSrh)r�r�r�r�rrr
r�sz)display_hotpath.<locals>.HotNode.__init__cs�|j|7_|d}|j�|�}|s8�|�}||j|<t|�dkr�d}|t|�krn||��tvrn|d7}qH|t|�kr�|�||d�|�n|j|7_dSr )r�r�r;r$rI�skips�add)rrNrOr�r�rC��HotNoderr
r��s

z$display_hotpath.<locals>.HotNode.addN)r'r(r)rr�rr�rr
r��sr�r����showtimeTcs�|j}��fdd�t�|j�D�}|�rf|dd}|��d�d�}|j}d�|�|r\dnd	d
�rrd|jndd}||j�jd
||f}	tddt	|	��}
d}|
dkr�d}d}||d�
|
�|jd�tddt	t|j����|�
d�f}
|	|
}tdd�t�|j�D��}|j|d�jk�r<d|d}n|j|dk�rXd|d}��|d�|}t	|�dk�s~|�r�|d7}|jddd�d�|D]}�||t	|�dk��q�dS)Ncs g|]}|j��jkr|�qSr�r��rl�c)�limit�rootrr
ro�s�z3display_hotpath.<locals>._write.<locals>.<listcomp>r�rr��r=�\�|s %4.1f%%s %5.2fss  %s %sr�r	�7s, s
%s%s %d: %s%ssliner�cSsg|]
}|j�qSrr�r�rrr
ror=g�������?sss�
TcSs|jSr"r�r�rrr
r�"r=z1display_hotpath.<locals>._write.<locals>.<lambda>r�)r�rr�r�rG�ljustr.r��maxr$�rjustr-�strrE�sumr�r�)Znode�depthZmultiple_siblingsr�Zvisiblechildren�indentrGr.ZlistpatternZ
liststringZspacing_len�prefixZcodepatternZ
codestringZfinalstringZchildrensamplesZnewdepthr�)�_writerBr�r�r�rr
r��sd
�
��������zdisplay_hotpath.<locals>._writeF)�objectrrOr�rNr;r�)r�rBr�r�Zlasttimer�r)r�r�rBr�r�r�r
r��s
<
r�c
Ks|durtjdd}tj�|�s>|�d|�|�d�dSi}|jD]H}dd�|jD�}|��d�	|�}||vr�||d||<qHd||<qHt
��\}	}
t|
d	��6}t
�
|�D]\}}|�d
||f�q�Wd�n1s�0Y|dur�d}t�d|
|f�|�d
|�dS)NsHOMEs/flamegraph.plserror: missing %s
s8get it here: https://github.com/brendangregg/FlameGraph
cSsg|]
}|j�qSr)r.r�rrr
ro4r=z"write_to_flame.<locals>.<listcomp>�;rr�s%s %d
s~/flamegraph.svgsperl ~/flamegraph.pl %s > %ssWritten to %s
)rrr
r,�existsr�rrNr�r~rZmkstemprr��system)
r�rBZ
scriptpathZ
outputfiler�r�r�r�rD�fdr,r�r�rrr
r�*s,



2r�cCsj|tvrt|Stj�tjd�d}|gtjD],}|tj}|�|�r0|t	|�d�}q^q0|t|<|S)z�Attempt to make the path to a Python module easier to read by
    removing whatever part of the Python search path it was found
    on.r�rN)
�
_pathcacher�__file__�rsplitr
�seprbr,�
startswithr$)r,Zhgpath�pr�rrr
�simplifypathLs

rc	Cs~g}|jD]F}g}|jD]&}|�t�|j�|jt�|j�f�q|�|j|f�q
t	�
|�}t|t�sp|�
d�}|�|�dS)N�utf-8)rrNrPr�sysstrr,r-r.rO�json�dumpsr0r1�encoder�)r�rBrr�rNrWrrr
r�]s



��


r��{�G�zt?�+����?cs�g�t���t���i�	g���	�
fdd��
d�t��|jdj|jdj}|��t|�������������
f	dd�}|jD]̉tdd	��jD��}t�|�}�|kr�q��r�|r܈d|dkr܈��|��q��r�|�q�t	|�D]V}��
�jt��f���
|�|\}	}
�
t���}��t
d
|
|	�jd|dd��q�t�|��q���rd|��qT�fd
d�t��D�}t�dd	�t��D��}
tjt
||
d�dd�}t|t��s�|�d�}|�|�|�d�dS)Ncsv|sdS|�vr�|S�|dd��}t��}|�|<��t|ddd|dd��|durr�dj|d�|S)Nrrz%s %s)�categoryrrr�)r�)r$rP�dict�update)rNr�Zmyid)�id2stack�stack2id�stackidrr
r�s"z write_to_chrome.<locals>.stackidrr�rc
s��t���}���\}}���\}}�j|}�|krB�krvnn0t|��j�}��td||||ddd��n
��|�dS)N�E���.Ar)�phrr�cat�sf�ts�pid)�tuple�popleftrOr�rPrr�)ZoldsidZoldcatZoldfuncZoldtimeZoldidxZdurationZ
sampletime)	�	blacklist�clamp�lastseen�	laststack�maxthreshold�minthresholdr�rrrr
�poplast�s"
��z write_to_chrome.<locals>.poplastcss4|],}dtt�|j��|jft�|j�fVqdS)z%s:%dN)rrrr,r-r.)rlrWrrr
�	<genexpr>�s��
�z"write_to_chrome.<locals>.<genexpr>�Br)rrrrrrrcsg|]\}}|�vr|�qSrr)rl�idxr�)rrr
ro�sz#write_to_chrome.<locals>.<listcomp>css|]\}}t|�|fVqdSr")r�)rlr9r:rrr
r#�s)ZtraceEventsZstackFramesr)r�rr�)�collections�dequer}rrOr�rrN�pop�reversed�
appendleftr$rPrr?�OrderedDictrr	r0r1r
r�)r�rBr!r Z	totaltimer"rNZqstackrmr,rrZsidZeventsZframesr)rrrrrr r!r�rrrr
r�usn
��



��


�
�

r�cCstd�dS)Na�
The statprof command line allows you to inspect the last profile's results in
the following forms:

usage:
    hotpath [-l --limit percent]
        Shows a graph of calls with the percent of time each takes.
        Red calls take over 10%% of the total time themselves.
    lines
        Shows the actual sampled lines.
    functions
        Shows the samples grouped by function.
    function [filename:]functionname
        Shows the callers and callees of a particular function.
    flame [-s --script-path] [-o --output-file path]
        Writes out a flamegraph to output-file (defaults to ~/flamegraph.svg)
        Requires that ~/flamegraph.pl exist.
        (Specify alternate script path with --script-path.))�printrrrr
�
printusage�s�r-c	
Cs�|durtj}t|�dkr$t�dSi}d}d|d<|ddkrLtj|d<nz|ddkrdtj|d<nb|ddkr|tj|d<nJ|dd	kr�tj|d<|d|d<d
}n"|ddkr�tj	|d<n
t�dSz$t
�tj|d�dgd
��\}}Wn8tj
�y"}zt|�t�WYd}~dSd}~00d|d<d}|D]�\}}|dv�rTt|�|d<n`|dv�rd|}nP|dv�rx||d<n<|dv�r�||d<n(|dv�r�t�dSd�s4Jd|���q4|�s�td�dSt|d�tfit
�|���dS)Nrrr�sfunctionZhotpathsformatr�Z	functionsr.r>Zflames	hl:f:o:p:)shelpslimit=sfile=soutput-file=sscript-path=r�slimit)z-lz--limit)z-fz--file)z-oz
--output-files
outputfile)z-pz
--script-paths
scriptpath)z-h�helpFzunhandled option %szmust specify --file to load)r,)rb�argvr$r-r�r�r�r�r�r�rZgetoptb�getopt�errorr,r�r�r�Z	strkwargs)	r/ZdisplayargsZoptstartZoptsrq�msgr,�or�rrr
�mainsj
�







r4�__main__)rjr)N)Nr>N)N)r�)NN)rr)N)9�__doc__Z
__future__rrrr&�
contextlibr0rurr
rZrbrwrOrr�rr��contextmanager�__all__r�rr�rrYr+rLr_�Eventr`rgrirsrzr�r�r�rr�r�r�r�r�r�r�r�r�r�rr�r�r-r4r'�exitrrrr
�<module>sdP	-:




+

$F
W
a

x
D


Youez - 2016 - github.com/yon3zu
LinuXploit