removed obsolete issues (many of them fixed with AE)
[docutils.git] / sandbox / tibs / pysource / test / testassign.py
blobe4d70a356803d30974c2739e3fc96b97a5bcadaa
1 class Jim:
3 def __init__(self):
4 a = 1
5 a = [2,3]
6 a,b = 4,5
7 a,b = [6,7]
8 a,self.a = 8,9
9 a = b = self.a = 10
10 a,b = c,d = 11,12
11 self.a,self.b = 13,14
12 self.a = self.b = 15