summaryrefslogtreecommitdiff
path: root/.emacs.d/snippets/python-mode/__new__
diff options
context:
space:
mode:
authorSimeon Simeonov2020-05-25 09:57:23 +0200
committerSimeon Simeonov2020-05-25 09:57:23 +0200
commit6185b8f74292b15acc427e9b978d1bb4c57038c0 (patch)
treedb0a9194865e656576755d32ff4bb9e94e18b7ce /.emacs.d/snippets/python-mode/__new__
parenteabfcb9092b4ee31acc51357ee681d77f06213c4 (diff)
Cleanup Python snippets
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)