diff options
| author | Simeon Simeonov | 2017-02-21 08:27:23 +0100 |
|---|---|---|
| committer | Simeon Simeonov | 2017-02-21 08:27:23 +0100 |
| commit | 6c9184e45865406de1df73a5b352df16fb55a6dd (patch) | |
| tree | f6c552dff9a5cc9f9bdbb7a0d58ee4ad3b4179d6 /.emacs.d/snippets/python-mode | |
| parent | d09417873b51c525cdea37fb8d165ae28da4e97a (diff) | |
Update php-mode.el, yaml-mode.el and yasnippet.el
Diffstat (limited to '.emacs.d/snippets/python-mode')
| -rw-r--r-- | .emacs.d/snippets/python-mode/__new__ | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.emacs.d/snippets/python-mode/__new__ b/.emacs.d/snippets/python-mode/__new__ new file mode 100644 index 0000000..8ccb151 --- /dev/null +++ b/.emacs.d/snippets/python-mode/__new__ | |||
| @@ -0,0 +1,8 @@ | |||
| 1 | # -*- mode: snippet -*- | ||
| 2 | # name: __new__ | ||
| 3 | # key: new | ||
| 4 | # group: dunder methods | ||
| 5 | # -- | ||
| 6 | def __new__(mcs, name, bases, dct): | ||
| 7 | $0 | ||
| 8 | return type.__new__(mcs, name, bases, dct) | ||
