print "Maya Data Out > %s ",pickle.loads(process.stdout.read())
File "C:\Python26\lib\pickle.py", line 1374, in loads
return Unpickler(file).load()
File "C:\Python26\lib\pickle.py", line 858, in load
dispatch[key](self)
File "C:\Python26\lib\pickle.py", line 994, in load_tuple
k = self.marker()
File "C:\Python26\lib\pickle.py", line 874, in marker
while stack[k] is not mark: k = k-1
IndexError: list index out of range
so I google ed the web and found most people came across with this problem and only solution the end up used is pickle.dump(file,object) and then read using pickle.load(file,obj)
but i am doing a sys.stdout write operation, and I have to read it using pickle.loads(listObject) but i keep getting the Index error... any soltion how i can fix ..