Adding ipdb snippet

ipdb is not in the standard library, but every descent developer should use it...
This commit is contained in:
Bernhard Vallant 2013-04-23 16:01:34 +03:00
parent 3479a918bd
commit 8e4036f49f

View File

@ -469,6 +469,10 @@ snippet pdb "Set PDB breakpoint" b
import pdb; pdb.set_trace()
endsnippet
snippet ipdb "Set IPDB breakpoint" b
import ipdb; pdb.set_trace()
endsnippet
snippet ae "Assert equal" b
self.assertEqual(${1:first},${2:second})
endsnippet