Psyduck - 可達鴨 之 鴨力山大2


Server : LiteSpeed
System : Linux premium217.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User : alloknri ( 880)
PHP Version : 8.1.34
Disable Function : NONE
Directory :  /opt/alt/python39/lib64/python3.9/__pycache__/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //opt/alt/python39/lib64/python3.9/__pycache__/statistics.cpython-39.pyc
a

XC?h���@s�dZgd�ZddlZddlZddlZddlmZddlmZddl	m
Z
ddlmZm
Z
ddlmZmZmZmZmZmZmZmZdd	lmZdd
lmZGdd�de�ZdGd
d�Zdd�Zdd�Zdd�Zdd�Z dd�Z!dd�Z"dHdd�Z#dd�Z$d d!�Z%d"d#�Z&d$d%�Z'd&d'�Z(d(d)�Z)d*d+�Z*dId-d.�Z+d/d0�Z,d1d2�Z-d3d4d5�d6d7�Z.dJd8d9�Z/dKd:d;�Z0dLd<d=�Z1dMd>d?�Z2dNd@dA�Z3dBdC�Z4zddDl5m4Z4Wne6�y�Yn0GdEdF�dF�Z7dS)Oam

Basic statistics module.

This module provides functions for calculating statistics of data, including
averages, variance, and standard deviation.

Calculating averages
--------------------

==================  ==================================================
Function            Description
==================  ==================================================
mean                Arithmetic mean (average) of data.
fmean               Fast, floating point arithmetic mean.
geometric_mean      Geometric mean of data.
harmonic_mean       Harmonic mean of data.
median              Median (middle value) of data.
median_low          Low median of data.
median_high         High median of data.
median_grouped      Median, or 50th percentile, of grouped data.
mode                Mode (most common value) of data.
multimode           List of modes (most common values of data).
quantiles           Divide data into intervals with equal probability.
==================  ==================================================

Calculate the arithmetic mean ("the average") of data:

>>> mean([-1.0, 2.5, 3.25, 5.75])
2.625


Calculate the standard median of discrete data:

>>> median([2, 3, 4, 5])
3.5


Calculate the median, or 50th percentile, of data grouped into class intervals
centred on the data values provided. E.g. if your data points are rounded to
the nearest whole number:

>>> median_grouped([2, 2, 3, 3, 3, 4])  #doctest: +ELLIPSIS
2.8333333333...

This should be interpreted in this way: you have two data points in the class
interval 1.5-2.5, three data points in the class interval 2.5-3.5, and one in
the class interval 3.5-4.5. The median of these data points is 2.8333...


Calculating variability or spread
---------------------------------

==================  =============================================
Function            Description
==================  =============================================
pvariance           Population variance of data.
variance            Sample variance of data.
pstdev              Population standard deviation of data.
stdev               Sample standard deviation of data.
==================  =============================================

Calculate the standard deviation of sample data:

>>> stdev([2.5, 3.25, 5.5, 11.25, 11.75])  #doctest: +ELLIPSIS
4.38961843444...

If you have previously calculated the mean, you can pass it as the optional
second argument to the four "spread" functions to avoid recalculating it:

>>> data = [1, 2, 2, 4, 4, 4, 5, 6]
>>> mu = mean(data)
>>> pvariance(data, mu)
2.5


Exceptions
----------

A single exception is defined: StatisticsError is a subclass of ValueError.

)�
NormalDist�StatisticsError�fmean�geometric_mean�
harmonic_mean�mean�median�median_grouped�median_high�
median_low�mode�	multimode�pstdev�	pvariance�	quantiles�stdev�variance�N��Fraction)�Decimal)�groupby)�bisect_left�bisect_right)�hypot�sqrt�fabs�exp�erf�tau�log�fsum)�
itemgetter)�Counterc@seZdZdS)rN)�__name__�
__module__�__qualname__�r&r&�//opt/alt/python39/lib64/python3.9/statistics.pyrusrcCs�d}t|�\}}||i}|j}ttt|��}t|t�D]@\}}	t||�}tt|	�D]"\}}|d7}||d�|||<qRq6d|vr�|d}
t|
�r�J�ntdd�t	|�
��D��}
||
|fS)aC_sum(data [, start]) -> (type, sum, count)

    Return a high-precision sum of the given numeric data as a fraction,
    together with the type to be converted to and the count of items.

    If optional argument ``start`` is given, it is added to the total.
    If ``data`` is empty, ``start`` (defaulting to 0) is returned.


    Examples
    --------

    >>> _sum([3, 2.25, 4.5, -0.5, 1.0], 0.75)
    (<class 'float'>, Fraction(11, 1), 5)

    Some sources of round-off error will be avoided:

    # Built-in sum returns zero.
    >>> _sum([1e50, 1, -1e50] * 1000)
    (<class 'float'>, Fraction(1000, 1), 3000)

    Fractions and Decimals are also supported:

    >>> from fractions import Fraction as F
    >>> _sum([F(2, 3), F(7, 5), F(1, 4), F(5, 6)])
    (<class 'fractions.Fraction'>, Fraction(63, 20), 4)

    >>> from decimal import Decimal as D
    >>> data = [D("0.1375"), D("0.2108"), D("0.3061"), D("0.0419")]
    >>> _sum(data)
    (<class 'decimal.Decimal'>, Fraction(6963, 10000), 4)

    Mixed types are currently treated as an error, except that int is
    allowed.
    r�Ncss|]\}}t||�VqdS�Nr)�.0�d�nr&r&r'�	<genexpr>��z_sum.<locals>.<genexpr>)�_exact_ratio�get�_coerce�int�typer�map�	_isfinite�sum�sorted�items)�data�start�countr,r+ZpartialsZpartials_get�T�typ�values�totalr&r&r'�_sum{s$
r@cCs,z
|��WSty&t�|�YS0dSr))Z	is_finite�AttributeError�mathZisfinite)�xr&r&r'r5�s
r5cCs�|tusJd��||ur|S|tus,|tur0|S|tur<|St||�rJ|St||�rX|St|t�rf|St|t�rt|St|t�r�t|t�r�|St|t�r�t|t�r�|Sd}t||j|jf��dS)z�Coerce types T and S to a common type, or raise TypeError.

    Coercion rules are currently an implementation detail. See the CoerceTest
    test class in test_statistics for details.
    zinitial type T is boolz"don't know how to coerce %s and %sN)�boolr2�
issubclassr�float�	TypeErrorr#)r<�S�msgr&r&r'r1�sr1cCs�znt|�tust|�tur$|��WSz|j|jfWWStyjz|��WYWStydYn0Yn0Wn*ttfy�t	|�r�J�|dfYS0d}t
|�t|�j���dS)z�Return Real number x to exact (numerator, denominator) pair.

    >>> _exact_ratio(0.25)
    (1, 4)

    x is expected to be an int, Fraction, Decimal or float.
    Nz0can't convert type '{}' to numerator/denominator)
r3rFr�as_integer_ratio�	numerator�denominatorrA�
OverflowError�
ValueErrorr5rG�formatr#)rCrIr&r&r'r/�s
r/cCsnt|�|ur|St|t�r(|jdkr(t}z
||�WStyht|t�rb||j�||j�YS�Yn0dS)z&Convert value to given numeric type T.r(N)r3rEr2rLrFrGrrK)�valuer<r&r&r'�_convert�s

rQcCs.t||�}|t|�kr&|||kr&|St�dS)z,Locate the leftmost value exactly equal to xN)r�lenrN)�arC�ir&r&r'�
_find_lteq
s
rUcCs>t|||d�}|t|�dkr6||d|kr6|dSt�dS)z-Locate the rightmost value exactly equal to x)�lor(N)rrRrN)rS�lrCrTr&r&r'�
_find_rteqs rX�negative valueccs$|D]}|dkrt|��|VqdS)z7Iterate over values, failing if any are less than zero.rN)r)r>�errmsgrCr&r&r'�	_fail_negsr[cCsTt|�|urt|�}t|�}|dkr,td��t|�\}}}||ksFJ�t|||�S)a�Return the sample arithmetic mean of data.

    >>> mean([1, 2, 3, 4, 4])
    2.8

    >>> from fractions import Fraction as F
    >>> mean([F(3, 7), F(1, 21), F(5, 3), F(1, 3)])
    Fraction(13, 21)

    >>> from decimal import Decimal as D
    >>> mean([D("0.5"), D("0.75"), D("0.625"), D("0.375")])
    Decimal('0.5625')

    If ``data`` is empty, StatisticsError will be raised.
    r(z%mean requires at least one data point)�iter�listrRrr@rQ)r9r,r<r?r;r&r&r'r'srcspzt|��Wn.ty:d��fdd�}t||��}Yn
0t|�}z
|�WStyjtd�d�Yn0dS)z�Convert data to floats and compute the arithmetic mean.

    This runs faster than the mean() function and it always returns a float.
    If the input dataset is empty, it raises a StatisticsError.

    >>> fmean([3.5, 4.0, 5.25])
    4.25
    rc3s t|dd�D]\�}|VqdS)Nr()r:)�	enumerate)�iterablerC�r,r&r'r;Oszfmean.<locals>.countz&fmean requires at least one data pointN)rRrGr �ZeroDivisionErrorr)r9r;r?r&r`r'rAs	
rcCs6ztttt|���WSty0td�d�Yn0dS)aYConvert data to floats and compute the geometric mean.

    Raises a StatisticsError if the input dataset is empty,
    if it contains a zero, or if it contains a negative value.

    No special efforts are made to achieve exact results.
    (However, this may change in the future.)

    >>> round(geometric_mean([54, 24, 36]), 9)
    36.0
    zGgeometric mean requires a non-empty dataset containing positive numbersN)rrr4rrNr)r9r&r&r'r\s�rcCs�t|�|urt|�}d}t|�}|dkr2td��n<|dkrn|d}t|tjtf�rf|dkrbt|��|Std��z"t	dd�t
||�D��\}}}Wnty�YdS0||ks�J�t|||�S)aReturn the harmonic mean of data.

    The harmonic mean, sometimes called the subcontrary mean, is the
    reciprocal of the arithmetic mean of the reciprocals of the data,
    and is often appropriate when averaging quantities which are rates
    or ratios, for example speeds. Example:

    Suppose an investor purchases an equal value of shares in each of
    three companies, with P/E (price/earning) ratios of 2.5, 3 and 10.
    What is the average P/E ratio for the investor's portfolio?

    >>> harmonic_mean([2.5, 3, 10])  # For an equal investment portfolio.
    3.6

    Using the arithmetic mean would give an average of about 5.167, which
    is too high.

    If ``data`` is empty, or any element is less than zero,
    ``harmonic_mean`` will raise ``StatisticsError``.
    z.harmonic mean does not support negative valuesr(z.harmonic_mean requires at least one data pointrzunsupported typecss|]}d|VqdS)r(Nr&�r*rCr&r&r'r-�r.z harmonic_mean.<locals>.<genexpr>)
r\r]rRr�
isinstance�numbersZRealrrGr@r[rarQ)r9rZr,rCr<r?r;r&r&r'ros&
"rcCs\t|�}t|�}|dkr td��|ddkr8||dS|d}||d||dSdS)aBReturn the median (middle value) of numeric data.

    When the number of data points is odd, return the middle data point.
    When the number of data points is even, the median is interpolated by
    taking the average of the two middle values:

    >>> median([1, 3, 5])
    3
    >>> median([1, 3, 5, 7])
    4.0

    r�no median for empty data�r(N�r7rRr)r9r,rTr&r&r'r�s
rcCsLt|�}t|�}|dkr td��|ddkr8||dS||ddSdS)a	Return the low median of numeric data.

    When the number of data points is odd, the middle value is returned.
    When it is even, the smaller of the two middle values is returned.

    >>> median_low([1, 3, 5])
    3
    >>> median_low([1, 3, 5, 7])
    3

    rrerfr(Nrg�r9r,r&r&r'r
�sr
cCs,t|�}t|�}|dkr td��||dS)aReturn the high median of data.

    When the number of data points is odd, the middle value is returned.
    When it is even, the larger of the two middle values is returned.

    >>> median_high([1, 3, 5])
    3
    >>> median_high([1, 3, 5, 7])
    5

    rrerfrgrhr&r&r'r	�s
r	r(c
Cs�t|�}t|�}|dkr"td��n|dkr2|dS||d}||fD]}t|ttf�rFtd|��qFz||d}Wn&ty�t|�t|�d}Yn0t||�}t	|||�}|}||d}	|||d||	S)a�Return the 50th percentile (median) of grouped continuous data.

    >>> median_grouped([1, 2, 2, 3, 4, 4, 4, 4, 4, 5])
    3.7
    >>> median_grouped([52, 52, 53, 54])
    52.5

    This calculates the median as the 50th percentile, and should be
    used when your data is continuous and grouped. In the above example,
    the values 1, 2, 3, etc. actually represent the midpoint of classes
    0.5-1.5, 1.5-2.5, 2.5-3.5, etc. The middle value falls somewhere in
    class 3.5-4.5, and interpolation is used to estimate it.

    Optional argument ``interval`` represents the class interval, and
    defaults to 1. Changing the class interval naturally will change the
    interpolated 50th percentile value:

    >>> median_grouped([1, 3, 3, 5, 7], interval=1)
    3.25
    >>> median_grouped([1, 3, 3, 5, 7], interval=2)
    3.5

    This function does not check whether the data points are at least
    ``interval`` apart.
    rrer(rfzexpected number but got %r)
r7rRrrc�str�bytesrGrFrUrX)
r9Zintervalr,rC�obj�L�l1�l2Zcf�fr&r&r'r�s&

rcCsBtt|���d�}z|ddWSty<td�d�Yn0dS)axReturn the most common data point from discrete or nominal data.

    ``mode`` assumes discrete data, and returns a single value. This is the
    standard treatment of the mode as commonly taught in schools:

        >>> mode([1, 1, 2, 3, 3, 3, 3, 4])
        3

    This also works with nominal (non-numeric) data:

        >>> mode(["red", "blue", "blue", "red", "green", "red", "red"])
        'red'

    If there are multiple modes with same frequency, return the first one
    encountered:

        >>> mode(['red', 'red', 'green', 'blue', 'blue'])
        'red'

    If *data* is empty, ``mode``, raises StatisticsError.

    r(rzno mode for empty dataN)r"r\�most_common�
IndexErrorr)r9Zpairsr&r&r'rs
rcCs@tt|����}tt|td�d�dgf�\}}tttd�|��S)a.Return a list of the most frequently occurring values.

    Will return more than one result if there are multiple modes
    or an empty list if *data* is empty.

    >>> multimode('aabbbbbbbbcc')
    ['b']
    >>> multimode('aabbbbccddddeeffffgg')
    ['b', 'd', 'f']
    >>> multimode('')
    []
    r()�keyr)r"r\rp�nextrr!r]r4)r9ZcountsZmaxcountZ
mode_itemsr&r&r'r4s
r��	exclusive)r,�methodc
CsB|dkrtd��t|�}t|�}|dkr0td��|dkr�|d}g}td|�D]D}t|||�\}}||||||d||}	|�|	�qN|S|dk�r0|d}g}td|�D]r}|||}|dkr�dn||dkr�|dn|}||||}||d||||||}	|�|	�q�|Std|����dS)	a�Divide *data* into *n* continuous intervals with equal probability.

    Returns a list of (n - 1) cut points separating the intervals.

    Set *n* to 4 for quartiles (the default).  Set *n* to 10 for deciles.
    Set *n* to 100 for percentiles which gives the 99 cuts points that
    separate *data* in to 100 equal sized groups.

    The *data* can be any iterable containing sample.
    The cut points are linearly interpolated between data points.

    If *method* is set to *inclusive*, *data* is treated as population
    data.  The minimum value is treated as the 0th percentile and the
    maximum value is treated as the 100th percentile.
    r(zn must be at least 1rfz"must have at least two data pointsZ	inclusiveruzUnknown method: N)rr7rR�range�divmod�appendrN)
r9r,rvZld�m�resultrT�jZdeltaZinterpolatedr&r&r'rks2$
$$rcs��dur,t�fdd�|D��\}}}||fSt|��t�fdd�|D��\}}}t�fdd�|D��\}}}||kr|||ks�J�||dt|�8}|dkr�Jd|��||fS)	a;Return sum of square deviations of sequence data.

    If ``c`` is None, the mean is calculated in one pass, and the deviations
    from the mean are calculated in a second pass. Otherwise, deviations are
    calculated from ``c`` as given. Use the second case with care, as it can
    lead to garbage results.
    Nc3s|]}|�dVqdS�rfNr&rb��cr&r'r-�r.z_ss.<locals>.<genexpr>c3s|]}|�dVqdSr}r&rbr~r&r'r-�r.c3s|]}|�VqdSr)r&rbr~r&r'r-�r.rfrz%negative sum of square deviations: %f)r@rrR)r9rr<r?r;�UZtotal2Zcount2r&r~r'�_ss�sr�cCsLt|�|urt|�}t|�}|dkr,td��t||�\}}t||d|�S)a�Return the sample variance of data.

    data should be an iterable of Real-valued numbers, with at least two
    values. The optional argument xbar, if given, should be the mean of
    the data. If it is missing or None, the mean is automatically calculated.

    Use this function when your data is a sample from a population. To
    calculate the variance from the entire population, see ``pvariance``.

    Examples:

    >>> data = [2.75, 1.75, 1.25, 0.25, 0.5, 1.25, 3.5]
    >>> variance(data)
    1.3720238095238095

    If you have already calculated the mean of your data, you can pass it as
    the optional second argument ``xbar`` to avoid recalculating it:

    >>> m = mean(data)
    >>> variance(data, m)
    1.3720238095238095

    This function does not check that ``xbar`` is actually the mean of
    ``data``. Giving arbitrary values for ``xbar`` may lead to invalid or
    impossible results.

    Decimals and Fractions are supported:

    >>> from decimal import Decimal as D
    >>> variance([D("27.5"), D("30.25"), D("30.25"), D("34.5"), D("41.75")])
    Decimal('31.01875')

    >>> from fractions import Fraction as F
    >>> variance([F(1, 6), F(1, 2), F(5, 3)])
    Fraction(67, 108)

    rfz*variance requires at least two data pointsr(�r\r]rRrr�rQ)r9�xbarr,r<�ssr&r&r'r�s&rcCsHt|�|urt|�}t|�}|dkr,td��t||�\}}t|||�S)a,Return the population variance of ``data``.

    data should be a sequence or iterable of Real-valued numbers, with at least one
    value. The optional argument mu, if given, should be the mean of
    the data. If it is missing or None, the mean is automatically calculated.

    Use this function to calculate the variance from the entire population.
    To estimate the variance from a sample, the ``variance`` function is
    usually a better choice.

    Examples:

    >>> data = [0.0, 0.25, 0.25, 1.25, 1.5, 1.75, 2.75, 3.25]
    >>> pvariance(data)
    1.25

    If you have already calculated the mean of the data, you can pass it as
    the optional second argument to avoid recalculating it:

    >>> mu = mean(data)
    >>> pvariance(data, mu)
    1.25

    Decimals and Fractions are supported:

    >>> from decimal import Decimal as D
    >>> pvariance([D("27.5"), D("30.25"), D("30.25"), D("34.5"), D("41.75")])
    Decimal('24.815')

    >>> from fractions import Fraction as F
    >>> pvariance([F(1, 4), F(5, 4), F(1, 2)])
    Fraction(13, 72)

    r(z*pvariance requires at least one data pointr�)r9�mur,r<r�r&r&r'r�s#rcCs6t||�}z
|��WSty0t�|�YS0dS)z�Return the square root of the sample variance.

    See ``variance`` for arguments and other details.

    >>> stdev([1.5, 2.5, 2.5, 2.75, 3.25, 4.75])
    1.0810874155219827

    N)rrrArB)r9r��varr&r&r'rs
	

rcCs6t||�}z
|��WSty0t�|�YS0dS)z�Return the square root of the population variance.

    See ``pvariance`` for arguments and other details.

    >>> pstdev([1.5, 2.5, 2.5, 2.75, 3.25, 4.75])
    0.986893273527251

    N)rrrArB)r9r�r�r&r&r'r
$s
	

r
cCs|d}t|�dkr�d||}d|d|d|d|d|d	|d
|d|}d|d
|d|d|d|d|d|d}||}|||S|dkr�|nd|}tt|��}|dk�r^|d}d|d|d|d|d|d|d|d}d|d |d!|d"|d#|d$|d%|d}n�|d}d&|d'|d(|d)|d*|d+|d,|d-}d.|d/|d0|d1|d2|d3|d4|d}||}|dk�r�|}|||S)5N��?g333333�?g��Q��?g^�}o)��@g�E.k�R�@g ��Ul�@g*u��>l�@g�N����@g�"]Ξ@gnC���`@gu��@giK��~j�@gv��|E�@g��d�|1�@gfR��r��@g��u.2�@g���~y�@g�n8(E@��?�g@g�������?g鬷�ZaI?gg�El�D�?g7\�����?g�uS�S�?g�=�.
@gj%b�@g���Hw�@gjR�e�?g�9dh?
>g('߿��A?g��~z �?g@�3��?gɅ3��?g3fR�x�?gI�F��l@g����t��>g*�Y��n�>gESB\T?g�N;A+�?g�UR1��?gE�F���?gP�n��@g&�>���@g����i�<g�@�F�>g�tcI,\�>g�ŝ���I?g*F2�v�?g�C4�?g��O�1�?)rrr)�pr��sigma�q�rZnumZdenrCr&r&r'�_normal_dist_inv_cdf7sd���������������������������
��������������������������	��������������������������
r�)r�c@seZdZdZddd�Zd:dd�Zed	d
��Zdd�d
d�Zdd�Z	dd�Z
dd�Zd;dd�Zdd�Z
dd�Zedd��Zedd��Zed d!��Zed"d#��Zed$d%��Zd&d'�Zd(d)�Zd*d+�Zd,d-�Zd.d/�Zd0d1�ZeZd2d3�ZeZd4d5�Zd6d7�Zd8d9�Z dS)<rz(Normal distribution of a random variablez(Arithmetic mean of a normal distributionz+Standard deviation of a normal distribution)�_mu�_sigmar�r�cCs(|dkrtd��t|�|_t|�|_dS)zDNormalDist where mu is the mean and sigma is the standard deviation.r�zsigma must be non-negativeN)rrFr�r�)�selfr�r�r&r&r'�__init__�s
zNormalDist.__init__cCs.t|ttf�st|�}t|�}||t||��S)z5Make a normal distribution instance from sample data.)rcr]�tuplerr)�clsr9r�r&r&r'�from_samples�szNormalDist.from_samplesN)�seedcsB|durtjn
t�|�j�|j|j�����fdd�t|�D�S)z=Generate *n* samples for a given mean and standard deviation.Ncsg|]}�����qSr&r&�r*rT��gaussr�r�r&r'�
<listcomp>�r.z&NormalDist.samples.<locals>.<listcomp>)�randomr�ZRandomr�r�rw)r�r,r�r&r�r'�samples�szNormalDist.samplescCs<|jd}|std��t||jdd|�tt|�S)z4Probability density function.  P(x <= X < x+dx) / dx�@z$pdf() not defined when sigma is zerog�)r�rrr�rr)r�rCrr&r&r'�pdf�s
zNormalDist.pdfcCs2|jstd��ddt||j|jtd��S)z,Cumulative distribution function.  P(X <= x)z$cdf() not defined when sigma is zeror�r�r�)r�rrr�r�r�rCr&r&r'�cdf�szNormalDist.cdfcCs:|dks|dkrtd��|jdkr*td��t||j|j�S)aSInverse cumulative distribution function.  x : P(X <= x) = p

        Finds the value of the random variable such that the probability of
        the variable being less than or equal to that value equals the given
        probability.

        This function is also called the percent point function or quantile
        function.
        r�r�z$p must be in the range 0.0 < p < 1.0z-cdf() not defined when sigma at or below zero)rr�r�r�)r�r�r&r&r'�inv_cdf�s


zNormalDist.inv_cdfrtcs��fdd�td��D�S)anDivide into *n* continuous intervals with equal probability.

        Returns a list of (n - 1) cut points separating the intervals.

        Set *n* to 4 for quartiles (the default).  Set *n* to 10 for deciles.
        Set *n* to 100 for percentiles which gives the 99 cuts points that
        separate the normal distribution in to 100 equal sized groups.
        csg|]}��|���qSr&)r�r��r,r�r&r'r��r.z(NormalDist.quantiles.<locals>.<listcomp>r()rw)r�r,r&r�r'r�s	zNormalDist.quantilescCst|t�std��||}}|j|jf|j|jfkr>||}}|j|j}}|rT|s\td��||}t|j|j�}|s�dt|d|jt	d��S|j||j|}|j|jt	|d|t
||��}	||	|}
||	|}dt|�|
�|�|
��t|�|�|�|��S)a�Compute the overlapping coefficient (OVL) between two normal distributions.

        Measures the agreement between two normal probability distributions.
        Returns a value between 0.0 and 1.0 giving the overlapping area in
        the two underlying probability density functions.

            >>> N1 = NormalDist(2.4, 1.6)
            >>> N2 = NormalDist(3.2, 2.0)
            >>> N1.overlap(N2)
            0.8035050657330205
        z$Expected another NormalDist instancez(overlap() not defined when sigma is zeror�r�)rcrrGr�r�rrrrrrr�)r��other�X�YZX_varZY_varZdvZdmrS�b�x1�x2r&r&r'�overlap�s"


(zNormalDist.overlapcCs|jstd��||j|jS)z�Compute the Standard Score.  (x - mean) / stdev

        Describes *x* in terms of the number of standard deviations
        above or below the mean of the normal distribution.
        z'zscore() not defined when sigma is zero)r�rr�r�r&r&r'�zscore�szNormalDist.zscorecCs|jS)z+Arithmetic mean of the normal distribution.�r��r�r&r&r'r�szNormalDist.meancCs|jS)z,Return the median of the normal distributionr�r�r&r&r'rszNormalDist.mediancCs|jS)z�Return the mode of the normal distribution

        The mode is the value x where which the probability density
        function (pdf) takes its maximum value.
        r�r�r&r&r'rszNormalDist.modecCs|jS)z.Standard deviation of the normal distribution.�r�r�r&r&r'rszNormalDist.stdevcCs
|jdS)z!Square of the standard deviation.r�r�r�r&r&r'rszNormalDist.variancecCs8t|t�r&t|j|jt|j|j��St|j||j�S)ajAdd a constant or another NormalDist instance.

        If *other* is a constant, translate mu by the constant,
        leaving sigma unchanged.

        If *other* is a NormalDist, add both the means and the variances.
        Mathematically, this works only if the two distributions are
        independent or if they are jointly normally distributed.
        �rcrr�rr��r�r�r&r&r'�__add__s

zNormalDist.__add__cCs8t|t�r&t|j|jt|j|j��St|j||j�S)asSubtract a constant or another NormalDist instance.

        If *other* is a constant, translate by the constant mu,
        leaving sigma unchanged.

        If *other* is a NormalDist, subtract the means and add the variances.
        Mathematically, this works only if the two distributions are
        independent or if they are jointly normally distributed.
        r�r�r&r&r'�__sub__'s

zNormalDist.__sub__cCst|j||jt|��S)z�Multiply both mu and sigma by a constant.

        Used for rescaling, perhaps to change measurement units.
        Sigma is scaled with the absolute value of the constant.
        �rr�r�rr�r&r&r'�__mul__5szNormalDist.__mul__cCst|j||jt|��S)z�Divide both mu and sigma by a constant.

        Used for rescaling, perhaps to change measurement units.
        Sigma is scaled with the absolute value of the constant.
        r�r�r&r&r'�__truediv__=szNormalDist.__truediv__cCst|j|j�S)zReturn a copy of the instance.�rr�r��r�r&r&r'�__pos__EszNormalDist.__pos__cCst|j|j�S)z(Negates mu while keeping sigma the same.r�r�r&r&r'�__neg__IszNormalDist.__neg__cCs
||S)z<Subtract a NormalDist from a constant or another NormalDist.r&r�r&r&r'�__rsub__OszNormalDist.__rsub__cCs&t|t�stS|j|jko$|j|jkS)zFTwo NormalDist objects are equal if their mu and sigma are both equal.)rcr�NotImplementedr�r�r�r&r&r'�__eq__Us
zNormalDist.__eq__cCst|j|jf�S)zCNormalDist objects hash equal if their mu and sigma are both equal.)�hashr�r�r�r&r&r'�__hash__[szNormalDist.__hash__cCs t|�j�d|j�d|j�d�S)Nz(mu=z, sigma=�))r3r#r�r�r�r&r&r'�__repr___szNormalDist.__repr__)r�r�)rt)!r#r$r%�__doc__�	__slots__r��classmethodr�r�r�r�r�rr�r��propertyrrrrrr�r�r�r�r�r��__radd__r��__rmul__r�r�r�r&r&r&r'r�sH�


"




r)r)rY)r()N)N)N)N)N)8r��__all__rBrdr�Z	fractionsrZdecimalr�	itertoolsrZbisectrrrrrrrrrr �operatorr!�collectionsr"rNrr@r5r1r/rQrUrXr[rrrrrr
r	rrrrr�rrrr
r�Z_statistics�ImportErrorrr&r&r&r'�<module>sTR(
: 

/
778

/
,

K
Name
Size
Permissions
Options
__future__.cpython-39.opt-1.pyc
4.042 KB
-rw-r--r--
__future__.cpython-39.opt-2.pyc
2.116 KB
-rw-r--r--
__future__.cpython-39.pyc
4.042 KB
-rw-r--r--
__phello__.foo.cpython-39.opt-1.pyc
0.139 KB
-rw-r--r--
__phello__.foo.cpython-39.opt-2.pyc
0.139 KB
-rw-r--r--
__phello__.foo.cpython-39.pyc
0.139 KB
-rw-r--r--
_aix_support.cpython-39.opt-1.pyc
2.987 KB
-rw-r--r--
_aix_support.cpython-39.opt-2.pyc
1.664 KB
-rw-r--r--
_aix_support.cpython-39.pyc
2.987 KB
-rw-r--r--
_bootlocale.cpython-39.opt-1.pyc
1.201 KB
-rw-r--r--
_bootlocale.cpython-39.opt-2.pyc
0.981 KB
-rw-r--r--
_bootlocale.cpython-39.pyc
1.211 KB
-rw-r--r--
_bootsubprocess.cpython-39.opt-1.pyc
2.205 KB
-rw-r--r--
_bootsubprocess.cpython-39.opt-2.pyc
1.981 KB
-rw-r--r--
_bootsubprocess.cpython-39.pyc
2.205 KB
-rw-r--r--
_collections_abc.cpython-39.opt-1.pyc
31 KB
-rw-r--r--
_collections_abc.cpython-39.opt-2.pyc
25.639 KB
-rw-r--r--
_collections_abc.cpython-39.pyc
31 KB
-rw-r--r--
_compat_pickle.cpython-39.opt-1.pyc
5.32 KB
-rw-r--r--
_compat_pickle.cpython-39.opt-2.pyc
5.32 KB
-rw-r--r--
_compat_pickle.cpython-39.pyc
5.372 KB
-rw-r--r--
_compression.cpython-39.opt-1.pyc
4.112 KB
-rw-r--r--
_compression.cpython-39.opt-2.pyc
3.903 KB
-rw-r--r--
_compression.cpython-39.pyc
4.112 KB
-rw-r--r--
_markupbase.cpython-39.opt-1.pyc
7.46 KB
-rw-r--r--
_markupbase.cpython-39.opt-2.pyc
7.091 KB
-rw-r--r--
_markupbase.cpython-39.pyc
7.607 KB
-rw-r--r--
_osx_support.cpython-39.opt-1.pyc
11.323 KB
-rw-r--r--
_osx_support.cpython-39.opt-2.pyc
8.696 KB
-rw-r--r--
_osx_support.cpython-39.pyc
11.323 KB
-rw-r--r--
_py_abc.cpython-39.opt-1.pyc
4.538 KB
-rw-r--r--
_py_abc.cpython-39.opt-2.pyc
3.354 KB
-rw-r--r--
_py_abc.cpython-39.pyc
4.56 KB
-rw-r--r--
_pydecimal.cpython-39.opt-1.pyc
156.861 KB
-rw-r--r--
_pydecimal.cpython-39.opt-2.pyc
77.157 KB
-rw-r--r--
_pydecimal.cpython-39.pyc
156.861 KB
-rw-r--r--
_pyio.cpython-39.opt-1.pyc
72.637 KB
-rw-r--r--
_pyio.cpython-39.opt-2.pyc
50.374 KB
-rw-r--r--
_pyio.cpython-39.pyc
72.656 KB
-rw-r--r--
_sitebuiltins.cpython-39.opt-1.pyc
3.432 KB
-rw-r--r--
_sitebuiltins.cpython-39.opt-2.pyc
2.92 KB
-rw-r--r--
_sitebuiltins.cpython-39.pyc
3.432 KB
-rw-r--r--
_strptime.cpython-39.opt-1.pyc
15.652 KB
-rw-r--r--
_strptime.cpython-39.opt-2.pyc
12.012 KB
-rw-r--r--
_strptime.cpython-39.pyc
15.652 KB
-rw-r--r--
_sysconfigdata__linux_x86_64-linux-gnu.cpython-39.opt-1.pyc
29.254 KB
-rw-r--r--
_sysconfigdata__linux_x86_64-linux-gnu.cpython-39.opt-2.pyc
29.254 KB
-rw-r--r--
_sysconfigdata__linux_x86_64-linux-gnu.cpython-39.pyc
29.254 KB
-rw-r--r--
_sysconfigdata_d_linux_x86_64-linux-gnu.cpython-39.opt-1.pyc
29.102 KB
-rw-r--r--
_sysconfigdata_d_linux_x86_64-linux-gnu.cpython-39.opt-2.pyc
29.102 KB
-rw-r--r--
_sysconfigdata_d_linux_x86_64-linux-gnu.cpython-39.pyc
29.102 KB
-rw-r--r--
_threading_local.cpython-39.opt-1.pyc
6.366 KB
-rw-r--r--
_threading_local.cpython-39.opt-2.pyc
3.124 KB
-rw-r--r--
_threading_local.cpython-39.pyc
6.366 KB
-rw-r--r--
_weakrefset.cpython-39.opt-1.pyc
7.556 KB
-rw-r--r--
_weakrefset.cpython-39.opt-2.pyc
7.556 KB
-rw-r--r--
_weakrefset.cpython-39.pyc
7.556 KB
-rw-r--r--
abc.cpython-39.opt-1.pyc
5.652 KB
-rw-r--r--
abc.cpython-39.opt-2.pyc
3.153 KB
-rw-r--r--
abc.cpython-39.pyc
5.652 KB
-rw-r--r--
aifc.cpython-39.opt-1.pyc
24.687 KB
-rw-r--r--
aifc.cpython-39.opt-2.pyc
19.602 KB
-rw-r--r--
aifc.cpython-39.pyc
24.687 KB
-rw-r--r--
antigravity.cpython-39.opt-1.pyc
0.813 KB
-rw-r--r--
antigravity.cpython-39.opt-2.pyc
0.672 KB
-rw-r--r--
antigravity.cpython-39.pyc
0.813 KB
-rw-r--r--
argparse.cpython-39.opt-1.pyc
62.066 KB
-rw-r--r--
argparse.cpython-39.opt-2.pyc
52.922 KB
-rw-r--r--
argparse.cpython-39.pyc
62.175 KB
-rw-r--r--
ast.cpython-39.opt-1.pyc
51.118 KB
-rw-r--r--
ast.cpython-39.opt-2.pyc
42.773 KB
-rw-r--r--
ast.cpython-39.pyc
51.168 KB
-rw-r--r--
asynchat.cpython-39.opt-1.pyc
6.675 KB
-rw-r--r--
asynchat.cpython-39.opt-2.pyc
5.332 KB
-rw-r--r--
asynchat.cpython-39.pyc
6.675 KB
-rw-r--r--
asyncore.cpython-39.opt-1.pyc
15.673 KB
-rw-r--r--
asyncore.cpython-39.opt-2.pyc
14.497 KB
-rw-r--r--
asyncore.cpython-39.pyc
15.673 KB
-rw-r--r--
base64.cpython-39.opt-1.pyc
15.953 KB
-rw-r--r--
base64.cpython-39.opt-2.pyc
10.563 KB
-rw-r--r--
base64.cpython-39.pyc
16.082 KB
-rw-r--r--
bdb.cpython-39.opt-1.pyc
23.978 KB
-rw-r--r--
bdb.cpython-39.opt-2.pyc
15.152 KB
-rw-r--r--
bdb.cpython-39.pyc
23.978 KB
-rw-r--r--
binhex.cpython-39.opt-1.pyc
12.674 KB
-rw-r--r--
binhex.cpython-39.opt-2.pyc
12.152 KB
-rw-r--r--
binhex.cpython-39.pyc
12.674 KB
-rw-r--r--
bisect.cpython-39.opt-1.pyc
2.308 KB
-rw-r--r--
bisect.cpython-39.opt-2.pyc
1.026 KB
-rw-r--r--
bisect.cpython-39.pyc
2.308 KB
-rw-r--r--
bz2.cpython-39.opt-1.pyc
11.287 KB
-rw-r--r--
bz2.cpython-39.opt-2.pyc
6.389 KB
-rw-r--r--
bz2.cpython-39.pyc
11.287 KB
-rw-r--r--
cProfile.cpython-39.opt-1.pyc
5.009 KB
-rw-r--r--
cProfile.cpython-39.opt-2.pyc
4.559 KB
-rw-r--r--
cProfile.cpython-39.pyc
5.009 KB
-rw-r--r--
calendar.cpython-39.opt-1.pyc
26.41 KB
-rw-r--r--
calendar.cpython-39.opt-2.pyc
21.926 KB
-rw-r--r--
calendar.cpython-39.pyc
26.41 KB
-rw-r--r--
cgi.cpython-39.opt-1.pyc
25.874 KB
-rw-r--r--
cgi.cpython-39.opt-2.pyc
17.646 KB
-rw-r--r--
cgi.cpython-39.pyc
25.874 KB
-rw-r--r--
cgitb.cpython-39.opt-1.pyc
9.96 KB
-rw-r--r--
cgitb.cpython-39.opt-2.pyc
8.398 KB
-rw-r--r--
cgitb.cpython-39.pyc
9.96 KB
-rw-r--r--
chunk.cpython-39.opt-1.pyc
4.74 KB
-rw-r--r--
chunk.cpython-39.opt-2.pyc
2.646 KB
-rw-r--r--
chunk.cpython-39.pyc
4.74 KB
-rw-r--r--
cmd.cpython-39.opt-1.pyc
12.392 KB
-rw-r--r--
cmd.cpython-39.opt-2.pyc
7.094 KB
-rw-r--r--
cmd.cpython-39.pyc
12.392 KB
-rw-r--r--
code.cpython-39.opt-1.pyc
9.696 KB
-rw-r--r--
code.cpython-39.opt-2.pyc
4.549 KB
-rw-r--r--
code.cpython-39.pyc
9.696 KB
-rw-r--r--
codecs.cpython-39.opt-1.pyc
33.106 KB
-rw-r--r--
codecs.cpython-39.opt-2.pyc
17.899 KB
-rw-r--r--
codecs.cpython-39.pyc
33.106 KB
-rw-r--r--
codeop.cpython-39.opt-1.pyc
6.319 KB
-rw-r--r--
codeop.cpython-39.opt-2.pyc
2.354 KB
-rw-r--r--
codeop.cpython-39.pyc
6.319 KB
-rw-r--r--
colorsys.cpython-39.opt-1.pyc
3.196 KB
-rw-r--r--
colorsys.cpython-39.opt-2.pyc
2.604 KB
-rw-r--r--
colorsys.cpython-39.pyc
3.196 KB
-rw-r--r--
compileall.cpython-39.opt-1.pyc
12.307 KB
-rw-r--r--
compileall.cpython-39.opt-2.pyc
9.124 KB
-rw-r--r--
compileall.cpython-39.pyc
12.307 KB
-rw-r--r--
configparser.cpython-39.opt-1.pyc
44.807 KB
-rw-r--r--
configparser.cpython-39.opt-2.pyc
30.021 KB
-rw-r--r--
configparser.cpython-39.pyc
44.807 KB
-rw-r--r--
contextlib.cpython-39.opt-1.pyc
19.083 KB
-rw-r--r--
contextlib.cpython-39.opt-2.pyc
13.629 KB
-rw-r--r--
contextlib.cpython-39.pyc
19.093 KB
-rw-r--r--
contextvars.cpython-39.opt-1.pyc
0.252 KB
-rw-r--r--
contextvars.cpython-39.opt-2.pyc
0.252 KB
-rw-r--r--
contextvars.cpython-39.pyc
0.252 KB
-rw-r--r--
copy.cpython-39.opt-1.pyc
6.813 KB
-rw-r--r--
copy.cpython-39.opt-2.pyc
4.563 KB
-rw-r--r--
copy.cpython-39.pyc
6.813 KB
-rw-r--r--
copyreg.cpython-39.opt-1.pyc
4.32 KB
-rw-r--r--
copyreg.cpython-39.opt-2.pyc
3.537 KB
-rw-r--r--
copyreg.cpython-39.pyc
4.339 KB
-rw-r--r--
crypt.cpython-39.opt-1.pyc
3.443 KB
-rw-r--r--
crypt.cpython-39.opt-2.pyc
2.797 KB
-rw-r--r--
crypt.cpython-39.pyc
3.443 KB
-rw-r--r--
csv.cpython-39.opt-1.pyc
11.584 KB
-rw-r--r--
csv.cpython-39.opt-2.pyc
9.591 KB
-rw-r--r--
csv.cpython-39.pyc
11.584 KB
-rw-r--r--
dataclasses.cpython-39.opt-1.pyc
22.686 KB
-rw-r--r--
dataclasses.cpython-39.opt-2.pyc
19.327 KB
-rw-r--r--
dataclasses.cpython-39.pyc
22.686 KB
-rw-r--r--
datetime.cpython-39.opt-1.pyc
55.651 KB
-rw-r--r--
datetime.cpython-39.opt-2.pyc
47.405 KB
-rw-r--r--
datetime.cpython-39.pyc
56.766 KB
-rw-r--r--
decimal.cpython-39.opt-1.pyc
0.363 KB
-rw-r--r--
decimal.cpython-39.opt-2.pyc
0.363 KB
-rw-r--r--
decimal.cpython-39.pyc
0.363 KB
-rw-r--r--
difflib.cpython-39.opt-1.pyc
57.198 KB
-rw-r--r--
difflib.cpython-39.opt-2.pyc
24.45 KB
-rw-r--r--
difflib.cpython-39.pyc
57.22 KB
-rw-r--r--
dis.cpython-39.opt-1.pyc
15.462 KB
-rw-r--r--
dis.cpython-39.opt-2.pyc
11.744 KB
-rw-r--r--
dis.cpython-39.pyc
15.462 KB
-rw-r--r--
doctest.cpython-39.opt-1.pyc
74.067 KB
-rw-r--r--
doctest.cpython-39.opt-2.pyc
39.589 KB
-rw-r--r--
doctest.cpython-39.pyc
74.27 KB
-rw-r--r--
enum.cpython-39.opt-1.pyc
25.423 KB
-rw-r--r--
enum.cpython-39.opt-2.pyc
20.616 KB
-rw-r--r--
enum.cpython-39.pyc
25.423 KB
-rw-r--r--
filecmp.cpython-39.opt-1.pyc
8.433 KB
-rw-r--r--
filecmp.cpython-39.opt-2.pyc
5.954 KB
-rw-r--r--
filecmp.cpython-39.pyc
8.433 KB
-rw-r--r--
fileinput.cpython-39.opt-1.pyc
13.479 KB
-rw-r--r--
fileinput.cpython-39.opt-2.pyc
8.003 KB
-rw-r--r--
fileinput.cpython-39.pyc
13.479 KB
-rw-r--r--
fnmatch.cpython-39.opt-1.pyc
3.792 KB
-rw-r--r--
fnmatch.cpython-39.opt-2.pyc
2.612 KB
-rw-r--r--
fnmatch.cpython-39.pyc
3.862 KB
-rw-r--r--
formatter.cpython-39.opt-1.pyc
17.141 KB
-rw-r--r--
formatter.cpython-39.opt-2.pyc
14.758 KB
-rw-r--r--
formatter.cpython-39.pyc
17.141 KB
-rw-r--r--
fractions.cpython-39.opt-1.pyc
17.639 KB
-rw-r--r--
fractions.cpython-39.opt-2.pyc
10.607 KB
-rw-r--r--
fractions.cpython-39.pyc
17.639 KB
-rw-r--r--
ftplib.cpython-39.opt-1.pyc
28.034 KB
-rw-r--r--
ftplib.cpython-39.opt-2.pyc
18.128 KB
-rw-r--r--
ftplib.cpython-39.pyc
28.034 KB
-rw-r--r--
functools.cpython-39.opt-1.pyc
28.063 KB
-rw-r--r--
functools.cpython-39.opt-2.pyc
21.499 KB
-rw-r--r--
functools.cpython-39.pyc
28.063 KB
-rw-r--r--
genericpath.cpython-39.opt-1.pyc
4.447 KB
-rw-r--r--
genericpath.cpython-39.opt-2.pyc
3.292 KB
-rw-r--r--
genericpath.cpython-39.pyc
4.447 KB
-rw-r--r--
getopt.cpython-39.opt-1.pyc
6.108 KB
-rw-r--r--
getopt.cpython-39.opt-2.pyc
3.614 KB
-rw-r--r--
getopt.cpython-39.pyc
6.126 KB
-rw-r--r--
getpass.cpython-39.opt-1.pyc
4.114 KB
-rw-r--r--
getpass.cpython-39.opt-2.pyc
2.956 KB
-rw-r--r--
getpass.cpython-39.pyc
4.114 KB
-rw-r--r--
gettext.cpython-39.opt-1.pyc
17.662 KB
-rw-r--r--
gettext.cpython-39.opt-2.pyc
16.987 KB
-rw-r--r--
gettext.cpython-39.pyc
17.662 KB
-rw-r--r--
glob.cpython-39.opt-1.pyc
4.412 KB
-rw-r--r--
glob.cpython-39.opt-2.pyc
3.572 KB
-rw-r--r--
glob.cpython-39.pyc
4.45 KB
-rw-r--r--
graphlib.cpython-39.opt-1.pyc
7.358 KB
-rw-r--r--
graphlib.cpython-39.opt-2.pyc
4.003 KB
-rw-r--r--
graphlib.cpython-39.pyc
7.403 KB
-rw-r--r--
gzip.cpython-39.opt-1.pyc
18.073 KB
-rw-r--r--
gzip.cpython-39.opt-2.pyc
14.297 KB
-rw-r--r--
gzip.cpython-39.pyc
18.073 KB
-rw-r--r--
hashlib.cpython-39.opt-1.pyc
6.547 KB
-rw-r--r--
hashlib.cpython-39.opt-2.pyc
5.992 KB
-rw-r--r--
hashlib.cpython-39.pyc
6.547 KB
-rw-r--r--
heapq.cpython-39.opt-1.pyc
13.724 KB
-rw-r--r--
heapq.cpython-39.opt-2.pyc
10.778 KB
-rw-r--r--
heapq.cpython-39.pyc
13.724 KB
-rw-r--r--
hmac.cpython-39.opt-1.pyc
6.653 KB
-rw-r--r--
hmac.cpython-39.opt-2.pyc
4.195 KB
-rw-r--r--
hmac.cpython-39.pyc
6.653 KB
-rw-r--r--
imaplib.cpython-39.opt-1.pyc
39.451 KB
-rw-r--r--
imaplib.cpython-39.opt-2.pyc
27.065 KB
-rw-r--r--
imaplib.cpython-39.pyc
41.581 KB
-rw-r--r--
imghdr.cpython-39.opt-1.pyc
4.056 KB
-rw-r--r--
imghdr.cpython-39.opt-2.pyc
3.748 KB
-rw-r--r--
imghdr.cpython-39.pyc
4.056 KB
-rw-r--r--
imp.cpython-39.opt-1.pyc
9.633 KB
-rw-r--r--
imp.cpython-39.opt-2.pyc
7.323 KB
-rw-r--r--
imp.cpython-39.pyc
9.633 KB
-rw-r--r--
inspect.cpython-39.opt-1.pyc
79.339 KB
-rw-r--r--
inspect.cpython-39.opt-2.pyc
54.8 KB
-rw-r--r--
inspect.cpython-39.pyc
79.575 KB
-rw-r--r--
io.cpython-39.opt-1.pyc
3.341 KB
-rw-r--r--
io.cpython-39.opt-2.pyc
1.887 KB
-rw-r--r--
io.cpython-39.pyc
3.341 KB
-rw-r--r--
ipaddress.cpython-39.opt-1.pyc
64.155 KB
-rw-r--r--
ipaddress.cpython-39.opt-2.pyc
38.784 KB
-rw-r--r--
ipaddress.cpython-39.pyc
64.155 KB
-rw-r--r--
keyword.cpython-39.opt-1.pyc
0.907 KB
-rw-r--r--
keyword.cpython-39.opt-2.pyc
0.513 KB
-rw-r--r--
keyword.cpython-39.pyc
0.907 KB
-rw-r--r--
linecache.cpython-39.opt-1.pyc
3.946 KB
-rw-r--r--
linecache.cpython-39.opt-2.pyc
2.742 KB
-rw-r--r--
linecache.cpython-39.pyc
3.946 KB
-rw-r--r--
locale.cpython-39.opt-1.pyc
33.896 KB
-rw-r--r--
locale.cpython-39.opt-2.pyc
29.386 KB
-rw-r--r--
locale.cpython-39.pyc
33.896 KB
-rw-r--r--
lzma.cpython-39.opt-1.pyc
11.823 KB
-rw-r--r--
lzma.cpython-39.opt-2.pyc
5.771 KB
-rw-r--r--
lzma.cpython-39.pyc
11.823 KB
-rw-r--r--
mailbox.cpython-39.opt-1.pyc
59.14 KB
-rw-r--r--
mailbox.cpython-39.opt-2.pyc
52.69 KB
-rw-r--r--
mailbox.cpython-39.pyc
59.192 KB
-rw-r--r--
mailcap.cpython-39.opt-1.pyc
7.082 KB
-rw-r--r--
mailcap.cpython-39.opt-2.pyc
5.549 KB
-rw-r--r--
mailcap.cpython-39.pyc
7.082 KB
-rw-r--r--
mimetypes.cpython-39.opt-1.pyc
15.652 KB
-rw-r--r--
mimetypes.cpython-39.opt-2.pyc
9.778 KB
-rw-r--r--
mimetypes.cpython-39.pyc
15.652 KB
-rw-r--r--
modulefinder.cpython-39.opt-1.pyc
15.718 KB
-rw-r--r--
modulefinder.cpython-39.opt-2.pyc
14.83 KB
-rw-r--r--
modulefinder.cpython-39.pyc
15.763 KB
-rw-r--r--
netrc.cpython-39.opt-1.pyc
3.707 KB
-rw-r--r--
netrc.cpython-39.opt-2.pyc
3.475 KB
-rw-r--r--
netrc.cpython-39.pyc
3.707 KB
-rw-r--r--
nntplib.cpython-39.opt-1.pyc
31.031 KB
-rw-r--r--
nntplib.cpython-39.opt-2.pyc
19.703 KB
-rw-r--r--
nntplib.cpython-39.pyc
31.031 KB
-rw-r--r--
ntpath.cpython-39.opt-1.pyc
14.478 KB
-rw-r--r--
ntpath.cpython-39.opt-2.pyc
12.475 KB
-rw-r--r--
ntpath.cpython-39.pyc
14.478 KB
-rw-r--r--
nturl2path.cpython-39.opt-1.pyc
1.718 KB
-rw-r--r--
nturl2path.cpython-39.opt-2.pyc
1.309 KB
-rw-r--r--
nturl2path.cpython-39.pyc
1.718 KB
-rw-r--r--
numbers.cpython-39.opt-1.pyc
12.043 KB
-rw-r--r--
numbers.cpython-39.opt-2.pyc
8.179 KB
-rw-r--r--
numbers.cpython-39.pyc
12.043 KB
-rw-r--r--
opcode.cpython-39.opt-1.pyc
5.113 KB
-rw-r--r--
opcode.cpython-39.opt-2.pyc
4.976 KB
-rw-r--r--
opcode.cpython-39.pyc
5.113 KB
-rw-r--r--
operator.cpython-39.opt-1.pyc
13.474 KB
-rw-r--r--
operator.cpython-39.opt-2.pyc
11.141 KB
-rw-r--r--
operator.cpython-39.pyc
13.474 KB
-rw-r--r--
optparse.cpython-39.opt-1.pyc
46.778 KB
-rw-r--r--
optparse.cpython-39.opt-2.pyc
34.752 KB
-rw-r--r--
optparse.cpython-39.pyc
46.832 KB
-rw-r--r--
os.cpython-39.opt-1.pyc
30.901 KB
-rw-r--r--
os.cpython-39.opt-2.pyc
18.997 KB
-rw-r--r--
os.cpython-39.pyc
30.917 KB
-rw-r--r--
pathlib.cpython-39.opt-1.pyc
42.521 KB
-rw-r--r--
pathlib.cpython-39.opt-2.pyc
33.868 KB
-rw-r--r--
pathlib.cpython-39.pyc
42.521 KB
-rw-r--r--
pdb.cpython-39.opt-1.pyc
46.445 KB
-rw-r--r--
pdb.cpython-39.opt-2.pyc
32.704 KB
-rw-r--r--
pdb.cpython-39.pyc
46.483 KB
-rw-r--r--
pickle.cpython-39.opt-1.pyc
45.923 KB
-rw-r--r--
pickle.cpython-39.opt-2.pyc
40.19 KB
-rw-r--r--
pickle.cpython-39.pyc
46.007 KB
-rw-r--r--
pickletools.cpython-39.opt-1.pyc
64.752 KB
-rw-r--r--
pickletools.cpython-39.opt-2.pyc
55.872 KB
-rw-r--r--
pickletools.cpython-39.pyc
65.547 KB
-rw-r--r--
pipes.cpython-39.opt-1.pyc
7.625 KB
-rw-r--r--
pipes.cpython-39.opt-2.pyc
4.825 KB
-rw-r--r--
pipes.cpython-39.pyc
7.625 KB
-rw-r--r--
pkgutil.cpython-39.opt-1.pyc
18.144 KB
-rw-r--r--
pkgutil.cpython-39.opt-2.pyc
11.602 KB
-rw-r--r--
pkgutil.cpython-39.pyc
18.144 KB
-rw-r--r--
platform.cpython-39.opt-1.pyc
25.81 KB
-rw-r--r--
platform.cpython-39.opt-2.pyc
17.931 KB
-rw-r--r--
platform.cpython-39.pyc
25.81 KB
-rw-r--r--
plistlib.cpython-39.opt-1.pyc
22.958 KB
-rw-r--r--
plistlib.cpython-39.opt-2.pyc
20.654 KB
-rw-r--r--
plistlib.cpython-39.pyc
23.008 KB
-rw-r--r--
poplib.cpython-39.opt-1.pyc
13.35 KB
-rw-r--r--
poplib.cpython-39.opt-2.pyc
8.535 KB
-rw-r--r--
poplib.cpython-39.pyc
13.35 KB
-rw-r--r--
posixpath.cpython-39.opt-1.pyc
10.373 KB
-rw-r--r--
posixpath.cpython-39.opt-2.pyc
8.698 KB
-rw-r--r--
posixpath.cpython-39.pyc
10.373 KB
-rw-r--r--
pprint.cpython-39.opt-1.pyc
16.416 KB
-rw-r--r--
pprint.cpython-39.opt-2.pyc
14.31 KB
-rw-r--r--
pprint.cpython-39.pyc
16.448 KB
-rw-r--r--
profile.cpython-39.opt-1.pyc
13.902 KB
-rw-r--r--
profile.cpython-39.opt-2.pyc
10.994 KB
-rw-r--r--
profile.cpython-39.pyc
14.086 KB
-rw-r--r--
pstats.cpython-39.opt-1.pyc
23.208 KB
-rw-r--r--
pstats.cpython-39.opt-2.pyc
20.367 KB
-rw-r--r--
pstats.cpython-39.pyc
23.208 KB
-rw-r--r--
pty.cpython-39.opt-1.pyc
3.876 KB
-rw-r--r--
pty.cpython-39.opt-2.pyc
3.051 KB
-rw-r--r--
pty.cpython-39.pyc
3.876 KB
-rw-r--r--
py_compile.cpython-39.opt-1.pyc
7.235 KB
-rw-r--r--
py_compile.cpython-39.opt-2.pyc
3.585 KB
-rw-r--r--
py_compile.cpython-39.pyc
7.235 KB
-rw-r--r--
pyclbr.cpython-39.opt-1.pyc
10.217 KB
-rw-r--r--
pyclbr.cpython-39.opt-2.pyc
6.7 KB
-rw-r--r--
pyclbr.cpython-39.pyc
10.217 KB
-rw-r--r--
pydoc.cpython-39.opt-1.pyc
83.438 KB
-rw-r--r--
pydoc.cpython-39.opt-2.pyc
73.788 KB
-rw-r--r--
pydoc.cpython-39.pyc
83.47 KB
-rw-r--r--
queue.cpython-39.opt-1.pyc
10.634 KB
-rw-r--r--
queue.cpython-39.opt-2.pyc
6.386 KB
-rw-r--r--
queue.cpython-39.pyc
10.634 KB
-rw-r--r--
quopri.cpython-39.opt-1.pyc
5.484 KB
-rw-r--r--
quopri.cpython-39.opt-2.pyc
4.473 KB
-rw-r--r--
quopri.cpython-39.pyc
5.625 KB
-rw-r--r--
random.cpython-39.opt-1.pyc
21.539 KB
-rw-r--r--
random.cpython-39.opt-2.pyc
14.267 KB
-rw-r--r--
random.cpython-39.pyc
21.539 KB
-rw-r--r--
re.cpython-39.opt-1.pyc
14.038 KB
-rw-r--r--
re.cpython-39.opt-2.pyc
5.896 KB
-rw-r--r--
re.cpython-39.pyc
14.038 KB
-rw-r--r--
reprlib.cpython-39.opt-1.pyc
5.195 KB
-rw-r--r--
reprlib.cpython-39.opt-2.pyc
5.043 KB
-rw-r--r--
reprlib.cpython-39.pyc
5.195 KB
-rw-r--r--
rlcompleter.cpython-39.opt-1.pyc
5.683 KB
-rw-r--r--
rlcompleter.cpython-39.opt-2.pyc
3.082 KB
-rw-r--r--
rlcompleter.cpython-39.pyc
5.683 KB
-rw-r--r--
runpy.cpython-39.opt-1.pyc
9.178 KB
-rw-r--r--
runpy.cpython-39.opt-2.pyc
6.793 KB
-rw-r--r--
runpy.cpython-39.pyc
9.178 KB
-rw-r--r--
sched.cpython-39.opt-1.pyc
6.49 KB
-rw-r--r--
sched.cpython-39.opt-2.pyc
3.533 KB
-rw-r--r--
sched.cpython-39.pyc
6.49 KB
-rw-r--r--
secrets.cpython-39.opt-1.pyc
2.142 KB
-rw-r--r--
secrets.cpython-39.opt-2.pyc
1.108 KB
-rw-r--r--
secrets.cpython-39.pyc
2.142 KB
-rw-r--r--
selectors.cpython-39.opt-1.pyc
16.854 KB
-rw-r--r--
selectors.cpython-39.opt-2.pyc
12.841 KB
-rw-r--r--
selectors.cpython-39.pyc
16.854 KB
-rw-r--r--
shelve.cpython-39.opt-1.pyc
9.333 KB
-rw-r--r--
shelve.cpython-39.opt-2.pyc
5.279 KB
-rw-r--r--
shelve.cpython-39.pyc
9.333 KB
-rw-r--r--
shlex.cpython-39.opt-1.pyc
7.565 KB
-rw-r--r--
shlex.cpython-39.opt-2.pyc
7.021 KB
-rw-r--r--
shlex.cpython-39.pyc
7.565 KB
-rw-r--r--
shutil.cpython-39.opt-1.pyc
37.607 KB
-rw-r--r--
shutil.cpython-39.opt-2.pyc
25.822 KB
-rw-r--r--
shutil.cpython-39.pyc
37.607 KB
-rw-r--r--
signal.cpython-39.opt-1.pyc
2.948 KB
-rw-r--r--
signal.cpython-39.opt-2.pyc
2.729 KB
-rw-r--r--
signal.cpython-39.pyc
2.948 KB
-rw-r--r--
site.cpython-39.opt-1.pyc
16.624 KB
-rw-r--r--
site.cpython-39.opt-2.pyc
11.218 KB
-rw-r--r--
site.cpython-39.pyc
16.624 KB
-rw-r--r--
smtpd.cpython-39.opt-1.pyc
25.915 KB
-rw-r--r--
smtpd.cpython-39.opt-2.pyc
23.356 KB
-rw-r--r--
smtpd.cpython-39.pyc
25.915 KB
-rw-r--r--
smtplib.cpython-39.opt-1.pyc
35.057 KB
-rw-r--r--
smtplib.cpython-39.opt-2.pyc
19.078 KB
-rw-r--r--
smtplib.cpython-39.pyc
35.101 KB
-rw-r--r--
sndhdr.cpython-39.opt-1.pyc
6.842 KB
-rw-r--r--
sndhdr.cpython-39.opt-2.pyc
5.597 KB
-rw-r--r--
sndhdr.cpython-39.pyc
6.842 KB
-rw-r--r--
socket.cpython-39.opt-1.pyc
28.31 KB
-rw-r--r--
socket.cpython-39.opt-2.pyc
19.971 KB
-rw-r--r--
socket.cpython-39.pyc
28.333 KB
-rw-r--r--
socketserver.cpython-39.opt-1.pyc
24.93 KB
-rw-r--r--
socketserver.cpython-39.opt-2.pyc
14.465 KB
-rw-r--r--
socketserver.cpython-39.pyc
24.93 KB
-rw-r--r--
sre_compile.cpython-39.opt-1.pyc
14.621 KB
-rw-r--r--
sre_compile.cpython-39.opt-2.pyc
14.217 KB
-rw-r--r--
sre_compile.cpython-39.pyc
14.812 KB
-rw-r--r--
sre_constants.cpython-39.opt-1.pyc
6.2 KB
-rw-r--r--
sre_constants.cpython-39.opt-2.pyc
5.785 KB
-rw-r--r--
sre_constants.cpython-39.pyc
6.2 KB
-rw-r--r--
sre_parse.cpython-39.opt-1.pyc
21.274 KB
-rw-r--r--
sre_parse.cpython-39.opt-2.pyc
21.228 KB
-rw-r--r--
sre_parse.cpython-39.pyc
21.311 KB
-rw-r--r--
ssl.cpython-39.opt-1.pyc
44.014 KB
-rw-r--r--
ssl.cpython-39.opt-2.pyc
33.287 KB
-rw-r--r--
ssl.cpython-39.pyc
44.014 KB
-rw-r--r--
stat.cpython-39.opt-1.pyc
4.282 KB
-rw-r--r--
stat.cpython-39.opt-2.pyc
3.518 KB
-rw-r--r--
stat.cpython-39.pyc
4.282 KB
-rw-r--r--
statistics.cpython-39.opt-1.pyc
31.052 KB
-rw-r--r--
statistics.cpython-39.opt-2.pyc
15.551 KB
-rw-r--r--
statistics.cpython-39.pyc
31.241 KB
-rw-r--r--
string.cpython-39.opt-1.pyc
7.01 KB
-rw-r--r--
string.cpython-39.opt-2.pyc
5.93 KB
-rw-r--r--
string.cpython-39.pyc
7.01 KB
-rw-r--r--
stringprep.cpython-39.opt-1.pyc
9.726 KB
-rw-r--r--
stringprep.cpython-39.opt-2.pyc
9.513 KB
-rw-r--r--
stringprep.cpython-39.pyc
9.765 KB
-rw-r--r--
struct.cpython-39.opt-1.pyc
0.312 KB
-rw-r--r--
struct.cpython-39.opt-2.pyc
0.312 KB
-rw-r--r--
struct.cpython-39.pyc
0.312 KB
-rw-r--r--
subprocess.cpython-39.opt-1.pyc
43.284 KB
-rw-r--r--
subprocess.cpython-39.opt-2.pyc
31.528 KB
-rw-r--r--
subprocess.cpython-39.pyc
43.358 KB
-rw-r--r--
sunau.cpython-39.opt-1.pyc
16.436 KB
-rw-r--r--
sunau.cpython-39.opt-2.pyc
11.953 KB
-rw-r--r--
sunau.cpython-39.pyc
16.436 KB
-rw-r--r--
symbol.cpython-39.opt-1.pyc
2.531 KB
-rw-r--r--
symbol.cpython-39.opt-2.pyc
2.457 KB
-rw-r--r--
symbol.cpython-39.pyc
2.531 KB
-rw-r--r--
symtable.cpython-39.opt-1.pyc
10.841 KB
-rw-r--r--
symtable.cpython-39.opt-2.pyc
10.129 KB
-rw-r--r--
symtable.cpython-39.pyc
10.917 KB
-rw-r--r--
sysconfig.cpython-39.opt-1.pyc
15.703 KB
-rw-r--r--
sysconfig.cpython-39.opt-2.pyc
13.381 KB
-rw-r--r--
sysconfig.cpython-39.pyc
15.703 KB
-rw-r--r--
tabnanny.cpython-39.opt-1.pyc
6.912 KB
-rw-r--r--
tabnanny.cpython-39.opt-2.pyc
6.001 KB
-rw-r--r--
tabnanny.cpython-39.pyc
6.912 KB
-rw-r--r--
tarfile.cpython-39.opt-1.pyc
71.115 KB
-rw-r--r--
tarfile.cpython-39.opt-2.pyc
56.215 KB
-rw-r--r--
tarfile.cpython-39.pyc
71.13 KB
-rw-r--r--
telnetlib.cpython-39.opt-1.pyc
17.914 KB
-rw-r--r--
telnetlib.cpython-39.opt-2.pyc
10.588 KB
-rw-r--r--
telnetlib.cpython-39.pyc
17.914 KB
-rw-r--r--
tempfile.cpython-39.opt-1.pyc
23.114 KB
-rw-r--r--
tempfile.cpython-39.opt-2.pyc
16.741 KB
-rw-r--r--
tempfile.cpython-39.pyc
23.114 KB
-rw-r--r--
textwrap.cpython-39.opt-1.pyc
13.16 KB
-rw-r--r--
textwrap.cpython-39.opt-2.pyc
6.12 KB
-rw-r--r--
textwrap.cpython-39.pyc
13.217 KB
-rw-r--r--
this.cpython-39.opt-1.pyc
1.242 KB
-rw-r--r--
this.cpython-39.opt-2.pyc
1.242 KB
-rw-r--r--
this.cpython-39.pyc
1.242 KB
-rw-r--r--
threading.cpython-39.opt-1.pyc
40.751 KB
-rw-r--r--
threading.cpython-39.opt-2.pyc
23.967 KB
-rw-r--r--
threading.cpython-39.pyc
41.205 KB
-rw-r--r--
timeit.cpython-39.opt-1.pyc
11.493 KB
-rw-r--r--
timeit.cpython-39.opt-2.pyc
5.776 KB
-rw-r--r--
timeit.cpython-39.pyc
11.493 KB
-rw-r--r--
token.cpython-39.opt-1.pyc
2.45 KB
-rw-r--r--
token.cpython-39.opt-2.pyc
2.418 KB
-rw-r--r--
token.cpython-39.pyc
2.45 KB
-rw-r--r--
tokenize.cpython-39.opt-1.pyc
16.748 KB
-rw-r--r--
tokenize.cpython-39.opt-2.pyc
13.072 KB
-rw-r--r--
tokenize.cpython-39.pyc
16.775 KB
-rw-r--r--
trace.cpython-39.opt-1.pyc
19.309 KB
-rw-r--r--
trace.cpython-39.opt-2.pyc
16.364 KB
-rw-r--r--
trace.cpython-39.pyc
19.309 KB
-rw-r--r--
traceback.cpython-39.opt-1.pyc
19.974 KB
-rw-r--r--
traceback.cpython-39.opt-2.pyc
11.23 KB
-rw-r--r--
traceback.cpython-39.pyc
19.974 KB
-rw-r--r--
tracemalloc.cpython-39.opt-1.pyc
17.527 KB
-rw-r--r--
tracemalloc.cpython-39.opt-2.pyc
16.147 KB
-rw-r--r--
tracemalloc.cpython-39.pyc
17.527 KB
-rw-r--r--
tty.cpython-39.opt-1.pyc
1.065 KB
-rw-r--r--
tty.cpython-39.opt-2.pyc
0.959 KB
-rw-r--r--
tty.cpython-39.pyc
1.065 KB
-rw-r--r--
types.cpython-39.opt-1.pyc
9.032 KB
-rw-r--r--
types.cpython-39.opt-2.pyc
7.839 KB
-rw-r--r--
types.cpython-39.pyc
9.032 KB
-rw-r--r--
typing.cpython-39.opt-1.pyc
70.135 KB
-rw-r--r--
typing.cpython-39.opt-2.pyc
49.385 KB
-rw-r--r--
typing.cpython-39.pyc
70.262 KB
-rw-r--r--
uu.cpython-39.opt-1.pyc
3.77 KB
-rw-r--r--
uu.cpython-39.opt-2.pyc
3.531 KB
-rw-r--r--
uu.cpython-39.pyc
3.77 KB
-rw-r--r--
uuid.cpython-39.opt-1.pyc
21.885 KB
-rw-r--r--
uuid.cpython-39.opt-2.pyc
14.353 KB
-rw-r--r--
uuid.cpython-39.pyc
21.995 KB
-rw-r--r--
warnings.cpython-39.opt-1.pyc
12.87 KB
-rw-r--r--
warnings.cpython-39.opt-2.pyc
10.648 KB
-rw-r--r--
warnings.cpython-39.pyc
13.299 KB
-rw-r--r--
wave.cpython-39.opt-1.pyc
17.438 KB
-rw-r--r--
wave.cpython-39.opt-2.pyc
11.587 KB
-rw-r--r--
wave.cpython-39.pyc
17.467 KB
-rw-r--r--
weakref.cpython-39.opt-1.pyc
19.809 KB
-rw-r--r--
weakref.cpython-39.opt-2.pyc
16.601 KB
-rw-r--r--
weakref.cpython-39.pyc
19.822 KB
-rw-r--r--
webbrowser.cpython-39.opt-1.pyc
16.729 KB
-rw-r--r--
webbrowser.cpython-39.opt-2.pyc
14.375 KB
-rw-r--r--
webbrowser.cpython-39.pyc
16.745 KB
-rw-r--r--
xdrlib.cpython-39.opt-1.pyc
8.063 KB
-rw-r--r--
xdrlib.cpython-39.opt-2.pyc
7.589 KB
-rw-r--r--
xdrlib.cpython-39.pyc
8.063 KB
-rw-r--r--
zipapp.cpython-39.opt-1.pyc
5.857 KB
-rw-r--r--
zipapp.cpython-39.opt-2.pyc
4.709 KB
-rw-r--r--
zipapp.cpython-39.pyc
5.857 KB
-rw-r--r--
zipfile.cpython-39.opt-1.pyc
58.167 KB
-rw-r--r--
zipfile.cpython-39.opt-2.pyc
49.39 KB
-rw-r--r--
zipfile.cpython-39.pyc
58.188 KB
-rw-r--r--
zipimport.cpython-39.opt-1.pyc
16.77 KB
-rw-r--r--
zipimport.cpython-39.opt-2.pyc
13.334 KB
-rw-r--r--
zipimport.cpython-39.pyc
16.846 KB
-rw-r--r--