Skip to content

Commit

Permalink
refactor for easier testing
Browse files Browse the repository at this point in the history
  • Loading branch information
gotcha committed Apr 17, 2010
1 parent 0faca31 commit 14a8315
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions manual_test.py
@@ -1,9 +1,11 @@
import vimpdb; vimpdb.set_trace()
def output(arg):
print "MANUAL: arg=", arg


def out(a):
print a
def main():
import vimpdb; vimpdb.set_trace()
for abc in range(10):
output(abc)


for abc in range(10):
out(abc)
if __name__ == "__main__":
main()

0 comments on commit 14a8315

Please sign in to comment.