# -*- mode: snippet -*-
|
|
# name: __delitem__
|
|
# key: __delitem__
|
|
# group: Special methods
|
|
# --
|
|
def __delitem__(self, key):
|
|
$0
|