From 6164455931501742d820bec393e353edae9d3296 Mon Sep 17 00:00:00 2001 From: Santiago Gallego Date: Thu, 18 Jul 2013 21:31:59 +0200 Subject: [PATCH] Added python epydoc snippet --- snippets/python.snippets | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/snippets/python.snippets b/snippets/python.snippets index d8544cd..a200868 100644 --- a/snippets/python.snippets +++ b/snippets/python.snippets @@ -185,3 +185,15 @@ snippet lc logger.critical(${1:msg}) snippet li logger.info(${1:msg}) +snippet epydoc + """ + ${1:Description} + + @param ${2:param}: ${3: Description} + @type $2: ${4: Type} + + @return: ${5: Description} + @rtype : ${6: Type} + + @raise e: ${7: Description} + """