From 066854888778f43480da9f36ee156a059dc0702d Mon Sep 17 00:00:00 2001 From: Nicolas Jouanin Date: Sat, 13 Jun 2015 15:05:54 +0200 Subject: [PATCH] Remove unused --- tests/test.py | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 tests/test.py diff --git a/tests/test.py b/tests/test.py deleted file mode 100644 index d264625..0000000 --- a/tests/test.py +++ /dev/null @@ -1,19 +0,0 @@ -__author__ = 'nico' - - -class A: - def __init__(self): - self.a = 0 - - - -def do(a): - a.a = 1 - - - -if __name__ == '__main__': - a=A() - print(a.a) - do(a) - print(a.a)