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