File tree Expand file tree Collapse file tree 1 file changed +18
-6
lines changed Expand file tree Collapse file tree 1 file changed +18
-6
lines changed Original file line number Diff line number Diff line change 31
31
# suitability for any purpose.
32
32
33
33
' .source.python' :
34
- ' #!/usr/bin/env python' :
35
- ' prefix' : ' env'
36
- ' body' : ' #!/usr/bin/env python\n '
37
- ' # coding=utf-8' :
38
- ' prefix' : ' enc'
39
- ' body' : ' # coding=utf-8\n '
40
34
' Assert Equal' :
41
35
' prefix' : ' ase'
42
36
' body' : ' self.assertEqual(${1:expected}, ${2:actual}${3:, \' ${4:message}\' })$0'
134
128
' self' :
135
129
' prefix' : ' .'
136
130
' body' : ' self.'
131
+ ' #!/usr/bin/env python' :
132
+ ' prefix' : ' env'
133
+ ' body' : ' #!/usr/bin/env python\n '
134
+ ' #!/usr/bin/env python3' :
135
+ ' prefix' : ' env3'
136
+ ' body' : ' #!/usr/bin/env python3\n '
137
+ ' #!/usr/bin/env python2' :
138
+ ' prefix' : ' env2'
139
+ ' body' : ' #!/usr/bin/env python2\n '
140
+ ' #!/usr/bin/env python3 default' :
141
+ ' prefix' : ' #!'
142
+ ' body' : ' #!/usr/bin/env python3\n '
143
+ ' # coding=utf-8' :
144
+ ' prefix' : ' enc'
145
+ ' body' : ' # coding=utf-8\n '
146
+ ' future imports' :
147
+ ' prefix' : ' fut'
148
+ ' body' : ' from __future__ import absolute_import\n from __future__ import division\n from __future__ import print_function\n from __future__ import unicode_literals'
You can’t perform that action at this time.
0 commit comments