add from to python snippets

This commit is contained in:
Rich Layte 2011-10-19 21:56:00 +00:00
parent 2c2a752ec0
commit 354ff5427c

View File

@ -2,6 +2,8 @@ snippet #!
#!/usr/bin/env python #!/usr/bin/env python
snippet imp snippet imp
import ${1:module} import ${1:module}
snippet from
from ${1:package} import ${2:module}
# Module Docstring # Module Docstring
snippet docs snippet docs
''' '''