B (nzx@sdZddlZddddddd d gZdd+dZd?d,dZGd-d.d.eZGd/d d eZd0d1Zy0dd2lmZm Z m!Z!mZmZm"Z"e Z#e!Z$d3Z%Wn2e&k rngZd4Z#iZ$d*a'd5d6Z"dZ%YnXeej(e%se)ed7se d4e*d8d*d9e d:e*d*d;e d:e+d*d;e d:e,d*d;e d:e-d*d;[%dS)@z&Python part of the warnings subsystem.Nwarn warn_explicit showwarning formatwarningfilterwarnings simplefilter resetwarningscatch_warningscCst||||||}t|dS)z7Hook to write a warning to a file; replace if you like.N)WarningMessage_showwarnmsg_impl)messagecategoryfilenamelinenofilelinemsgr+/opt/alt/python37/lib/python3.7/warnings.pyr scCst||||d|}t|S)z.Function to format a warning the standard way.N)r _formatwarnmsg_impl)r r rrrrrrrrscCsP|j}|dkr tj}|dkr dSt|}y||Wntk rJYnXdS)N)rsysstderr_formatwarnmsgwriteOSError)rrtextrrrr sr c Cs|jj}|jd|jd|d|jd}|jdkrpyddl}||j|j}Wqvtk rld}d}YqvXn|j}|r| }|d|7}|j dk ry ddl }Wntk rd}d}Yn4X| }y| |j }Wntk rd}YnX|dk r|d7}x|D]t}|d|j|jf7}y$|dk rD||j|j}nd}Wntk rdd}YnX|r| }|d |7}qWn|s||d 7}|S) N:z:  rz %s Tz-Object allocated at (most recent call last): z File "%s", lineno %s z %s z<: Enable tracemalloc to get the object allocation traceback )r __name__rrr r linecachegetline Exceptionstripsource tracemalloc is_tracingget_object_traceback) rr srrr$tracingtbframerrrr#sR"           rcCsdyt}Wntk rYn|dq&Wdd|D\}}}}}t|}t|}|sp|rxddl}|r||}|r||d}|ryt|}|dkrt Wqt t fk rtd |fdYqXnd}t |||||dS) Nrztoo many fields (max 5): %rr3cSsg|] }|qSr)r").0r'rrr sz_setoption..rz\Zzinvalid lineno %r) splitlenrAr4 _getaction _getcategoryr5escapeintr= OverflowErrorr)rHpartsr9r r r:rr5rrrrEs0   rEcCsB|sdS|dkrdSxdD]}||r|SqWtd|fdS)Ndefaultallalways)rUrWignorer:onceerrorzinvalid action: %r) startswithrA)r9arrrrOs  rOcCs|stSd|krddl}|}nJ|d\}}}yt|dd|g}Wn$tk rftd|fdYnXyt||}Wn$tk rtd|fdYnXt|tstd|f|S)N.rzinvalid module name: %rzunknown warning category: %rzinvalid warning category: %r) Warningbuiltins rpartition __import__ ImportErrorrAgetattrAttributeError issubclass)r mklassr:_catrrrrPs" rPcCs|jj}d|kod|kS)zFSignal whether the frame is an internal CPython implementation detail. importlib _bootstrap)f_code co_filename)r*rrrr_is_internal_framesrncCs&|j}x|dk r t|r |j}qW|S)z;Find the next frame that doesn't involve CPython internals.N)f_backrn)r*rrr_next_external_frames rpc Csvt|tr|j}|dkrt}t|tr0t|tsDtdt|jyZ|dks\t t drht |}n4t d}x(t |dD]}t |}|dkrtqWWntk rt j}d}YnX|j}|j}d|kr|d}nd}|d} | r| } | drP| dd} n>|d krFyt jd } Wntk rDd } YnX| sP|} |d i} t||| ||| ||dS) z:Issue a warning, or maybe ignore it or raise an exception.Nz/category must be a Warning subclass, not '{:s}'rqrz__file__z.pyc__main__rZ__warningregistry__) isinstancer^ __class__ UserWarningtyperer.formatrrnr _getframerangerpr=__dict__ f_globalsf_linenogetlowerendswithargvrd setdefaultr) r r stacklevelr#r*xglobalsrr:rZfnlregistryrrrrsL           cCst|}|dkr8|pd}|dddkr8|dd}|dkrDi}|ddtkrd|t|d<t|tr~t|}|j}n |}||}|||f} || rdSx^t D]R} | \} } } }}| dks| |rt || r|dks| |r|dks||krPqWt } | dkrdSddl }|||| dkr2|| dkrfd || <||f}t|r\dSd t|<nf| d krrnZ| d krd || <||df}||rdSd ||<n$| d krd || <ntd | | ft|||||} t| dS)Nz z.pyversionrrXrZrYrqrWr:rUz1Unrecognized action (%r) in warnings.filters: %s)rRrr_filters_versionclearrur^strrvr;matchre defaultactionrgetlines onceregistry RuntimeErrorr r0)r r rrr:rmodule_globalsr#rkeyr@r9rrimodZlnrZoncekeyZaltkeyrrrrSsj                    c@s"eZdZdZdddZddZdS)r )r r rrrrr#NcCs>||_||_||_||_||_||_||_|r4|jnd|_dS)N) r r rrrrr#r_category_name)selfr r rrrrr#rrr__init__szWarningMessage.__init__cCsd|j|j|j|j|jfS)NzD{message : %r, category : %r, filename : %r, lineno : %s, line : %r})r rrrr)rrrr__str__szWarningMessage.__str__)NNN)rrBrC_WARNING_DETAILSrrrrrrr s r c@s8eZdZdZdddddZddZd d Zd d ZdS) r aA context manager that copies and restores the warnings filter upon exiting the context. The 'record' argument specifies whether warnings should be captured by a custom implementation of warnings.showwarning() and be appended to a list returned by the context manager. Otherwise None is returned by the context manager. The objects appended to the list are arguments whose attributes mirror the arguments to showwarning(). The 'module' argument is to specify an alternative module to the module named 'warnings' and imported under that name. This argument is only useful when testing the warnings module itself. FN)recordr:cCs(||_|dkrtjdn||_d|_dS)zSpecify whether to record warnings and if an alternative module should be used other than sys.modules['warnings']. For compatibility with Python 3.0, please consider all arguments to be keyword-only. NwarningsF)_recordrmodules_module_entered)rrr:rrrrszcatch_warnings.__init__cCsPg}|jr|d|jtjdk r4|d|jt|j}d|d|fS)Nz record=Truerz module=%rz%s(%s)z, )rr4rrrrxrjoin)rrGnamerrr__repr__s  zcatch_warnings.__repr__cCs~|jrtd|d|_|jj|_|jdd|j_|j|jj|_|jj|_|j rvg}|j |j_|jj |j_|SdSdS)NzCannot enter %r twiceT) rrrr;_filtersr?r _showwarningr rr4r,)rlogrrr __enter__s       zcatch_warnings.__enter__cGs>|jstd||j|j_|j|j|j_|j|j_dS)Nz%Cannot exit %r without entering first) rrrrr;r?rrr )rexc_inforrr__exit__s     zcatch_warnings.__exit__)rrBrCrDrrrrrrrrr s   cszdjdg}jdk rVddlddl}fdd}|d||t|7}d|d}t |t d d dS) Nz coroutine 'z' was never awaited rc3s8x2tjD]$\}}}||}||||fVq WdS)N)reversed cr_originr )rrfuncnamer)cororrrextracts z*_warn_unawaited_coroutine..extractz-Coroutine created at (most recent call last) r3r)r rr#) rCrr tracebackr4 format_listlistrrstriprRuntimeWarning)r msg_linesrrrr)rrr_warn_unawaited_coroutines  r)r;_defaultaction _onceregistryrrr?TrUcCs td7adS)Nrq)rrrrrr?sr?Zgettotalrefcountrt)r r:r4rX)r r4)NN)N)NrqN)NNNN).rDr__all__rrr rr,r0r1rr^rrr8rr!rArIrErOrPrnrprrobjectr r r _warningsr;rrr?rrZ_warnings_defaultsrbr warnoptionshasattrDeprecationWarningPendingDeprecationWarning ImportWarningResourceWarningrrrrsh  ;  "  5 EC