You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-02 16:44:46 +08:00
24 lines
518 B
Python
24 lines
518 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'
|