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