Script execution
This commit is contained in:
@@ -7,15 +7,17 @@ global sys, inspect, os, traceback
|
||||
import sys, inspect, os, traceback
|
||||
|
||||
from array import *
|
||||
import pickle
|
||||
a = array('i',[50,105,0x8899,0xffffff,1,0,0,0,0,0,0,0,0,0,1])
|
||||
print 'a ', a
|
||||
b = array('i',[0]*10)
|
||||
print 'b ', b
|
||||
a.pop()
|
||||
print 'a2', a
|
||||
import pickle
|
||||
c = pickle.dumps(a)
|
||||
print 'c ', c
|
||||
b = array('i',[0]*10)
|
||||
print 'b ', b
|
||||
a.extend(b)
|
||||
print 'a2', a
|
||||
c = pickle.dumps(a)
|
||||
print 'c2', c
|
||||
|
||||
def startTest(testName, DEVICE, params):
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user