2008-03-12 02:16:20 +00:00

8 lines
174 B
Plaintext

#contributor : Orestis Markou
#name : class ... :
# --
class ${1:cname}(${2:object}):
"docstring for $1"
def __init__(self, ${3:arg}):
self.$3 = $3
$0