8 lines
137 B
Plaintext
8 lines
137 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: __floordiv__
|
|
# key: _floordiv
|
|
# group: Special methods
|
|
# --
|
|
def __floordiv__(self, other):
|
|
return $0
|