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