# HG changeset patch # User Paul Boddie # Date 1215974950 -7200 # Node ID 6f583cfa39a5b3e2845a0073adbe17e3284f5662 # Parent 85000c878e8ae87f5160d32e783205f232a80192 Commit long uncommitted changes. diff -r 85000c878e8a -r 6f583cfa39a5 tests/global.py --- a/tests/global.py Sun Oct 14 22:46:36 2007 +0200 +++ b/tests/global.py Sun Jul 13 20:49:10 2008 +0200 @@ -1,7 +1,7 @@ a = 123 def f(x): - global a + global a, c a = x def g(a): @@ -12,8 +12,9 @@ class A: x = a - global a + global a, b y = a + b = 321 f(234) g(345)