summaryrefslogtreecommitdiff
path: root/.emacs.d/snippets/python-mode/__new__
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/snippets/python-mode/__new__')
-rw-r--r--.emacs.d/snippets/python-mode/__new__8
1 files changed, 0 insertions, 8 deletions
diff --git a/.emacs.d/snippets/python-mode/__new__ b/.emacs.d/snippets/python-mode/__new__
deleted file mode 100644
index 8ccb151..0000000
--- a/.emacs.d/snippets/python-mode/__new__
+++ /dev/null
@@ -1,8 +0,0 @@
1# -*- mode: snippet -*-
2# name: __new__
3# key: new
4# group: dunder methods
5# --
6def __new__(mcs, name, bases, dct):
7 $0
8 return type.__new__(mcs, name, bases, dct)