Script execution

This commit is contained in:
boccioli_m
2017-10-10 16:02:19 +02:00
parent 51809eace7
commit d65b9623bb

View File

@@ -13,7 +13,7 @@ print 'a ', a
b = array('i',[0]*10)
print 'b ', b
a.extend(b)
print a.itemsize
print b.itemsize
a.append(4)
print 'a2', a
c = pickle.dumps(a)