Return (self % i), that is pre-Python 2.6 string formatting (interpolation), element-wise for a pair of array_likes of `bytes_` or `str_`. See Also -------- mod
(self, i)
| 2222 | return asarray(multiply(self, i)) |
| 2223 | |
| 2224 | def __mod__(self, i): |
| 2225 | """ |
| 2226 | Return (self % i), that is pre-Python 2.6 string formatting |
| 2227 | (interpolation), element-wise for a pair of array_likes of `bytes_` |
| 2228 | or `str_`. |
| 2229 | |
| 2230 | See Also |
| 2231 | -------- |
| 2232 | mod |
| 2233 | """ |
| 2234 | return asarray(mod(self, i)) |
| 2235 | |
| 2236 | def __rmod__(self, other): |
| 2237 | return NotImplemented |