hyb
2026-01-09 4cb426cb3ae31e772a09d4ade5b2f0242aaeefa0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
Ë
KñúhÔãóF—dZdgZd„Zd„Zd„Zd„Zd„Zd„ZGd„d«Zy    )
zG
Mixin classes for custom array types that don't inherit from ndarray.
ÚNDArrayOperatorsMixincó>—    |jduS#t$rYywxYw)z)True when __array_ufunc__ is set to None.NF)Ú__array_ufunc__ÚAttributeError)Úobjs úCH:\Change_password\venv_build\Lib\site-packages\numpy/lib/mixins.pyÚ_disables_array_ufuncrs*€ðØ×"Ñ" dÐ*Ð*øÜ òÙðús ‚     ›có(‡—ˆfd„}d|›d|_|S)z>Implement a forward binary method with a ufunc, e.g., __add__.có8•—t|«rtS‰||«S©N©rÚNotImplemented©ÚselfÚotherÚufuncs  €rÚfuncz_binary_method.<locals>.funcsø€Ü   Ô 'Ü!Ð !ِT˜5Ó!Ð!óÚ__©Ú__name__©rÚnamers`  rÚ_binary_methodrsø€ô"𘘘bM€D„MØ €Krcó(‡—ˆfd„}d|›d|_|S)zAImplement a reflected binary method with a ufunc, e.g., __radd__.có8•—t|«rtS‰||«Sr r rs  €rrz&_reflected_binary_method.<locals>.funcsø€Ü   Ô 'Ü!Ð !ِU˜DÓ!Ð!rÚ__rrrrs`  rÚ_reflected_binary_methodrsø€ô"ð˜$˜˜rN€D„MØ €Krcó(‡—ˆfd„}d|›d|_|S)zAImplement an in-place binary method with a ufunc, e.g., __iadd__.có•—‰|||f¬«S)N)Úout©rs  €rrz$_inplace_binary_method.<locals>.func&sø€ÙT˜5 t gÔ.Ð.rÚ__irrrs`  rÚ_inplace_binary_methodr#$sø€ô/à˜$˜˜rN€D„MØ €KrcóH—t||«t||«t||«fS)zEImplement forward, reflected and inplace binary methods with a ufunc.)rrr#)rrs  rÚ_numeric_methodsr%,s*€ä ˜5 $Ó 'Ü $ U¨DÓ 1Ü " 5¨$Ó /ð 1ð1rcó(‡—ˆfd„}d|›d|_|S)z.Implement a unary special method with a ufunc.có•—‰|«Sr r!)rrs €rrz_unary_method.<locals>.func5s ø€ÙT‹{Ðrrrrs`  rÚ _unary_methodr(3sø€ôà˜˜˜bM€D„MØ €Krcó>—eZdZdZddlmZdZeejd«Z
eejd«Z eejd«Zeejd«Zeej"d    «Zeej&d
«Zeej,d «\ZZZeej4d «\ZZZeej<d «\ZZ Z!eejDd«\Z#Z$Z%eejLd«\Z'Z(Z)eejTd«\Z+Z,Z-eej\d«\Z/Z0Z1eejdd«Z3e4ejdd«Z5eejld«\Z7Z8Z9eejtd«\Z;Z<Z=eej|d«\Z?Z@ZAeej„d«\ZCZDZEeejŒd«\ZGZHZIeej”d«\ZKZLZMeNejžd«ZPeNej¢d«ZReNej¦d«ZTeNejªd«ZVy)raî Mixin defining all operator special methods using __array_ufunc__.
 
    This class implements the special methods for almost all of Python's
    builtin operators defined in the `operator` module, including comparisons
    (``==``, ``>``, etc.) and arithmetic (``+``, ``*``, ``-``, etc.), by
    deferring to the ``__array_ufunc__`` method, which subclasses must
    implement.
 
    It is useful for writing classes that do not inherit from `numpy.ndarray`,
    but that should support arithmetic and numpy universal functions like
    arrays as described in :external+neps:doc:`nep-0013-ufunc-overrides`.
 
    As an trivial example, consider this implementation of an ``ArrayLike``
    class that simply wraps a NumPy array and ensures that the result of any
    arithmetic operation is also an ``ArrayLike`` object:
 
        >>> import numbers
        >>> class ArrayLike(np.lib.mixins.NDArrayOperatorsMixin):
        ...     def __init__(self, value):
        ...         self.value = np.asarray(value)
        ...
        ...     # One might also consider adding the built-in list type to this
        ...     # list, to support operations like np.add(array_like, list)
        ...     _HANDLED_TYPES = (np.ndarray, numbers.Number)
        ...
        ...     def __array_ufunc__(self, ufunc, method, *inputs, **kwargs):
        ...         out = kwargs.get('out', ())
        ...         for x in inputs + out:
        ...             # Only support operations with instances of
        ...             # _HANDLED_TYPES. Use ArrayLike instead of type(self)
        ...             # for isinstance to allow subclasses that don't
        ...             # override __array_ufunc__ to handle ArrayLike objects.
        ...             if not isinstance(
        ...                 x, self._HANDLED_TYPES + (ArrayLike,)
        ...             ):
        ...                 return NotImplemented
        ...
        ...         # Defer to the implementation of the ufunc
        ...         # on unwrapped values.
        ...         inputs = tuple(x.value if isinstance(x, ArrayLike) else x
        ...                     for x in inputs)
        ...         if out:
        ...             kwargs['out'] = tuple(
        ...                 x.value if isinstance(x, ArrayLike) else x
        ...                 for x in out)
        ...         result = getattr(ufunc, method)(*inputs, **kwargs)
        ...
        ...         if type(result) is tuple:
        ...             # multiple return values
        ...             return tuple(type(self)(x) for x in result)
        ...         elif method == 'at':
        ...             # no return value
        ...             return None
        ...         else:
        ...             # one return value
        ...             return type(self)(result)
        ...
        ...     def __repr__(self):
        ...         return '%s(%r)' % (type(self).__name__, self.value)
 
    In interactions between ``ArrayLike`` objects and numbers or numpy arrays,
    the result is always another ``ArrayLike``:
 
        >>> x = ArrayLike([1, 2, 3])
        >>> x - 1
        ArrayLike(array([0, 1, 2]))
        >>> 1 - x
        ArrayLike(array([ 0, -1, -2]))
        >>> np.arange(3) - x
        ArrayLike(array([-1, -1, -1]))
        >>> x - np.arange(3)
        ArrayLike(array([1, 1, 1]))
 
    Note that unlike ``numpy.ndarray``, ``ArrayLike`` does not allow operations
    with arbitrary, unrecognized types. This ensures that interactions with
    ArrayLike preserve a well-defined casting hierarchy.
 
    é)Úumathr!ÚltÚleÚeqÚneÚgtÚgeÚaddÚsubÚmulÚmatmulÚtruedivÚfloordivÚmodÚdivmodÚpowÚlshiftÚrshiftÚandÚxorÚorÚnegÚposÚabsÚinvertN)WrÚ
__module__Ú __qualname__Ú__doc__Ú numpy._corer+ÚumÚ    __slots__rÚlessÚ__lt__Ú
less_equalÚ__le__ÚequalÚ__eq__Ú    not_equalÚ__ne__ÚgreaterÚ__gt__Ú greater_equalÚ__ge__r%r2Ú__add__Ú__radd__Ú__iadd__ÚsubtractÚ__sub__Ú__rsub__Ú__isub__ÚmultiplyÚ__mul__Ú__rmul__Ú__imul__r5Ú
__matmul__Ú __rmatmul__Ú __imatmul__Ú true_divideÚ __truediv__Ú __rtruediv__Ú __itruediv__Ú floor_divideÚ __floordiv__Ú __rfloordiv__Ú __ifloordiv__Ú    remainderÚ__mod__Ú__rmod__Ú__imod__r9Ú
__divmod__rÚ __rdivmod__ÚpowerÚ__pow__Ú__rpow__Ú__ipow__Ú
left_shiftÚ
__lshift__Ú __rlshift__Ú __ilshift__Ú right_shiftÚ
__rshift__Ú __rrshift__Ú __irshift__Ú bitwise_andÚ__and__Ú__rand__Ú__iand__Ú bitwise_xorÚ__xor__Ú__rxor__Ú__ixor__Ú
bitwise_orÚ__or__Ú__ror__Ú__ior__r(ÚnegativeÚ__neg__ÚpositiveÚ__pos__ÚabsoluteÚ__abs__rCÚ
__invert__r!rrrr;s„ñMõ\(à€Iñ
˜BŸG™G TÓ *€FÙ ˜BŸM™M¨4Ó 0€FÙ ˜BŸH™H dÓ +€FÙ ˜BŸL™L¨$Ó /€FÙ ˜BŸJ™J¨Ó -€FÙ ˜B×,Ñ,¨dÓ 3€Fñ#3°2·6±6¸5Ó"AÑ€GˆXxÙ"2°2·;±;ÀÓ"FÑ€GˆXxÙ"2°2·;±;ÀÓ"FÑ€GˆXxÙ+;Ø
    ‰    8ó,Ñ(€J ˜[á.>Ø
‰˜    ó/#Ñ+€K˜|á1AØ
‰˜ó2%Ñ.€L- á"2°2·<±<ÀÓ"GÑ€GˆXxÙ §    ¡    ¨8Ó4€JÙ*¨2¯9©9°hÓ?€Kñ#3°2·8±8¸UÓ"CÑ€GˆXxÙ+;Ø
 ‰ xó,!Ñ(€J ˜[á+;Ø
‰˜ó,"Ñ(€J ˜[á"2°2·>±>À5Ó"IÑ€GˆXxÙ"2°2·>±>À5Ó"IÑ€GˆXxÙ/°· ± ¸tÓDÑ€FˆGWñ˜BŸK™K¨Ó/€GÙ˜BŸK™K¨Ó/€GÙ˜BŸK™K¨Ó/€GÙ˜rŸy™y¨(Ó3JrN)    rFÚ__all__rrrr#r%r(rr!rrú<module>r’s>ðñð #Ð
#€òòòòò1ò÷y4òy4r