# -*- mode: snippet -*-
# name: __imul__
# key: _imul
# group: Special methods
# --
def __imul__(self, other):
    return $0
