comparison .emacs @ 605:ab9145ded910

STUB: .emacs
author Jeff Hammel <k0scist@gmail.com>
date Fri, 31 Jan 2014 15:16:44 -0800
parents 04dfe64d1ba7
children cd51786972c4
comparison
equal deleted inserted replaced
604:2786c3293fb5 605:ab9145ded910
193 return imp.load_source(module, dest) 193 return imp.load_source(module, dest)
194 ") 194 ")
195 195
196 (fset 'python-test "#!/usr/bin/env python 196 (fset 'python-test "#!/usr/bin/env python
197 197
198 # This Source Code Form is subject to the terms of the Mozilla Public
199 # License, v. 2.0. If a copy of the MPL was not distributed with this file,
200 # You can obtain one at http://mozilla.org/MPL/2.0/.
201
202 import os 198 import os
203 import unittest 199 import unittest
204 200
205 here = os.path.dirname(os.path.abspath(__file__)) 201 here = os.path.dirname(os.path.abspath(__file__))
206 202
207 class Test____(unittest.TestCase): 203 class Test__(unittest.TestCase):
204 def test__(self):
205 pass
208 206
209 if __name__ == '__main__': 207 if __name__ == '__main__':
210 unittest.main() 208 unittest.main()
211 ") 209 ")
212 210