24 lines
510 B
Python
24 lines
510 B
Python
raise "This program can't be run"
|
|
|
|
class A:
|
|
def __init__(self, num):
|
|
self.num = num
|
|
|
|
def __repr__(self):
|
|
return str(self.num)
|
|
|
|
b = []
|
|
for i in range(10):
|
|
b.append(A(i))
|
|
|
|
for i in ('CALL_FUNCTION', 'CALL_FUNCTION_VAR', 'CALL_FUNCTION_VAR_KW', 'CALL_FUNCTION_KW'):
|
|
print i, '\t', len(i), len(i) - len('CALL_FUNCTION'),
|
|
print (len(i) - len('CALL_FUNCTION')) / 3,
|
|
print i[len('CALL_FUNCTION'):]
|
|
|
|
p2 = (0, 0, None)
|
|
if p2[2]:
|
|
print 'has value'
|
|
else:
|
|
print ' no value'
|