(self, other)
| 516 | class C(object): |
| 517 | def __iadd__ (self, other): return "iadd" |
| 518 | def __iand__ (self, other): return "iand" |
| 519 | def __ifloordiv__(self, other): return "ifloordiv" |
| 520 | def __ilshift__ (self, other): return "ilshift" |
| 521 | def __imod__ (self, other): return "imod" |