|
|
|
|
|
_writeToStream(self,
ostream,
asBinary)
Write our data binary or ascii respectively |
source code
|
|
|
writeBinary(self,
out)
cPickle to cStringIO, write in 4 byte packs using ScriptUtil |
source code
|
|
|
readBinary(self,
inStream,
numBytesToRead)
Read in 4 byte packs to cStringIO, unpickle from there |
source code
|
|
|
writeASCII(self,
out)
cPickle to cStringIO, encode with base64 encoding |
source code
|
|
|
readASCII(self,
args,
lastParsedElement)
Read base64 element and decode to cStringIO, then unpickle |
source code
|
|
|
copy(self,
other)
Copy other into self - allows copy pointers as maya copies the data each
time you retrieve it |
source code
|
|
|
|
|
|