# HG changeset patch # User paulb@jeremy # Date 1152986095 -7200 # Node ID 7c40ee4eea88ab47468bddfb62e64b3d70cdca9f # Parent 71a4bbee763a2cd066f1b0f70519065c7a85fbf5 Split up the original test. diff -r 71a4bbee763a -r 7c40ee4eea88 tests/assign.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/assign.py Sat Jul 15 19:54:55 2006 +0200 @@ -0,0 +1,4 @@ +a = A() +b = a.x = c +[a, b, c] = l +a, b, c = l diff -r 71a4bbee763a -r 7c40ee4eea88 tests/class.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/class.py Sat Jul 15 19:54:55 2006 +0200 @@ -0,0 +1,5 @@ +class A: + x = 123 + def m(self, x): + self.x = x +a = A() diff -r 71a4bbee763a -r 7c40ee4eea88 tests/function.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/function.py Sat Jul 15 19:54:55 2006 +0200 @@ -0,0 +1,2 @@ +def f(a, b, c=2, *d, **e): + return g(a, b, c=2, *d, **e) diff -r 71a4bbee763a -r 7c40ee4eea88 tests/original.py --- a/tests/original.py Sat Jul 15 19:23:25 2006 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,10 +0,0 @@ -class A: - x = 123 - def m(self, x): - self.x = x -def f(a, b, c=2, *d, **e): - return g(a, b, c=2, *d, **e) -a = A() -b = a.x = c -[a, b, c] = l -a, b, c = l