#ohai , pep8

master
neingeist 10 years ago
parent af0ca7262b
commit 9f9a7ceff7

@ -9,6 +9,7 @@ from tempfile import mkdtemp
import os
import shutil
@contextmanager
def working_directory(path):
current_dir = os.getcwd()
@ -28,8 +29,6 @@ def just_a_test():
print "finally!"
@contextmanager
def temporary_dir(*args, **kwds):
name = mkdtemp(*args, **kwds)
@ -39,7 +38,6 @@ def temporary_dir(*args, **kwds):
shutil.rmtree(name)
with working_directory("/tmp"), just_a_test():
# do something within data/stuff
print os.getcwd()

@ -1,5 +1,6 @@
#!/usr/bin/python
def foo(n):
"""Returns n times foo, and a period.
@ -21,6 +22,7 @@ def foo(n):
else:
return ""
def _test():
import doctest
doctest.testmod()

@ -0,0 +1,3 @@
#!/bin/sh
find . -name "*.py" -not -name test_swig.py -not -name test_swig_opencv.py \
| xargs pep8
Loading…
Cancel
Save