Home
last modified time | relevance | path

Searched refs:__rdivmod__ (Results 1 – 25 of 223) sorted by relevance

123456789

/dports/devel/py-future/future-0.18.2/tests/test_future/
H A Dtest_int_old_division.py89 … self.assertEqual(int(y).__rdivmod__(int(x)), divmod(x, y), msg='x={0}; y={1}'.format(x, y))
90 … self.assertEqual(int(-y).__rdivmod__(int(x)), divmod(x, -y), msg='x={0}; y={1}'.format(x, y))
91 … self.assertEqual(int(y).__rdivmod__(int(-x)), divmod(-x, y), msg='x={0}; y={1}'.format(x, y))
92 … self.assertEqual(int(-y).__rdivmod__(int(-x)), divmod(-x, -y), msg='x={0}; y={1}'.format(x, y))
94 …self.assertEqual(int(x).__rdivmod__(int(y)), long(x).__rdivmod__(y), msg='x={0}; y={1}'.format(x, …
95 …self.assertEqual(int(-x).__rdivmod__(int(y)), long(-x).__rdivmod__(y), msg='x={0}; y={1}'.format(x…
96 …self.assertEqual(int(x).__rdivmod__(int(-y)), long(x).__rdivmod__(-y), msg='x={0}; y={1}'.format(x…
97 …self.assertEqual(int(-x).__rdivmod__(int(-y)), long(-x).__rdivmod__(-y), msg='x={0}; y={1}'.format…
/dports/devel/py-mypy/mypy-0.910/test-data/unit/fixtures/
H A Ddivmod.pyi7 def __rdivmod__(self, other: int) -> Tuple[int, int]: pass
11 def __rdivmod__(self, other: float) -> Tuple[float, float]: pass
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/python-skeletons/numpy/core/
H A D__init__.py879 def __rdivmod__(self, *args, **kwargs): # real signature unknown member in generic
1225 def __rdivmod__(self, *args, **kwargs): # real signature unknown member in int8
1475 def __rdivmod__(self, *args, **kwargs): # real signature unknown member in complex_
1731 def __rdivmod__(self, *args, **kwargs): # real signature unknown member in singlecomplex
1969 def __rdivmod__(self, *args, **kwargs): # real signature unknown member in float_
2218 def __rdivmod__(self, *args, **kwargs): # real signature unknown member in half
2400 def __rdivmod__(self, *args, **kwargs): # real signature unknown member in single
2586 def __rdivmod__(self, *args, **kwargs): # real signature unknown member in long
2773 def __rdivmod__(self, *args, **kwargs): # real signature unknown member in short
2951 def __rdivmod__(self, *args, **kwargs): # real signature unknown member in intc
[all …]
/dports/devel/py-prefixed/prefixed-0.3.2/prefixed/
H A D__init__.py325 def __rdivmod__(self, value): member in Float
327 return tuple(self.__class__(val) for val in super(Float, self).__rdivmod__(value))
/dports/math/py-sympy/sympy-1.9/sympy/polys/domains/
H A Dgaussiandomains.py136 def __rdivmod__(self, other): member in GaussianElement
157 qr = self.__rdivmod__(other)
165 qr = self.__rdivmod__(other)
/dports/devel/pytype/pytype-2021.9.9/pytype/typeshed/stdlib/@python2/
H A Dfractions.pyi119 def __rdivmod__(self, other: Union[int, Fraction]) -> Tuple[int, Fraction]: ...
121 def __rdivmod__(self, other: float) -> Tuple[float, Fraction]: ...
/dports/devel/pytype/pytype-2021.9.9/pytype/typeshed/stdlib/
H A Dfractions.pyi111 def __rdivmod__(self, other: Union[int, Fraction]) -> Tuple[int, Fraction]: ...
113 def __rdivmod__(self, other: float) -> Tuple[float, Fraction]: ...
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/future/types/
H A Dnewint.py211 def __rdivmod__(self, other): member in newint
212 value = super(newint, self).__rdivmod__(other)
/dports/multimedia/tautulli/Tautulli-2.8.0/lib/future/types/
H A Dnewint.py211 def __rdivmod__(self, other): member in newint
212 value = super(newint, self).__rdivmod__(other)
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/google-endpoints/future/types/
H A Dnewint.py209 def __rdivmod__(self, other): member in newint
210 value = super(newint, self).__rdivmod__(other)
/dports/devel/py-future/future-0.18.2/src/future/types/
H A Dnewint.py211 def __rdivmod__(self, other): member in newint
212 value = super(newint, self).__rdivmod__(other)
/dports/devel/py-mypy/mypy-0.910/mypy/typeshed/stdlib/
H A Dfractions.pyi124 def __rdivmod__(self, other: Union[int, Fraction]) -> Tuple[int, Fraction]: ...
126 def __rdivmod__(self, other: float) -> Tuple[float, Fraction]: ...
/dports/math/py-numpy/numpy-1.20.3/numpy/lib/
H A Dmixins.py160 __rdivmod__ = _reflected_binary_method(um.divmod, 'divmod') variable in NDArrayOperatorsMixin
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/werkzeug/
H A Dlocal.py419 __rdivmod__ = lambda x, o: x._get_current_object().__rdivmod__(o)
/dports/www/moinmoin/moin-1.9.11/MoinMoin/support/werkzeug/
H A Dlocal.py418 __rdivmod__ = lambda x, o: x._get_current_object().__rdivmod__(o) member in LocalProxy
/dports/math/py-numpy/numpy-1.20.3/numpy/polynomial/
H A D_polybase.py594 res = self.__rdivmod__(other)
600 res = self.__rdivmod__(other)
605 def __rdivmod__(self, other): member in ABCPolyBase
/dports/finance/odoo/odoo-19d77c2a03335eb95a686bd69a1b56b38e87d609/odoo/tools/
H A Dfunc.py199 def __rdivmod__(self, other): return self._value.__rdivmod__(other) member in lazy
/dports/editors/micro/micro-2.0.10/vendor/github.com/zyedidia/highlight/syntax_files/
H A Dpython3.yaml15 …o__|__oct__|__or__|__pos__|__pow__|__radd__|__rand__|__rcmp__|__rdiv__|__rdivmod__|__repeat__|__re…
H A Dpython2.yaml16 …o__|__oct__|__or__|__pos__|__pow__|__radd__|__rand__|__rcmp__|__rdiv__|__rdivmod__|__repeat__|__re…
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/typeshed/third_party/2and3/werkzeug/
H A Dlocal.pyi98 __rdivmod__: Any
/dports/devel/pytype/pytype-2021.9.9/pytype/typeshed/stubs/Werkzeug/werkzeug/
H A Dlocal.pyi98 __rdivmod__: Any
/dports/devel/py-types-Werkzeug/types-Werkzeug-1.0.9/werkzeug-stubs/
H A Dlocal.pyi98 __rdivmod__: Any
/dports/devel/py-jedi/jedi-0.18.0/jedi/third_party/typeshed/third_party/2and3/werkzeug/
H A Dlocal.pyi98 __rdivmod__: Any
/dports/editors/micro/micro-2.0.10/runtime/syntax/
H A Dpython2.yaml16 …o__|__oct__|__or__|__pos__|__pow__|__radd__|__rand__|__rcmp__|__rdiv__|__rdivmod__|__repeat__|__re…
H A Dsage.yaml16 …o__|__oct__|__or__|__pos__|__pow__|__radd__|__rand__|__rcmp__|__rdiv__|__rdivmod__|__repeat__|__re…

123456789