Lines Matching defs:marshal
32 import marshal53 # Why use struct.pack() for pickling but marshal.loads() for54 # unpickling? struct.pack() is 40% faster than marshal.dumps(), but55 # marshal.loads() is twice as fast as struct.unpack()!56 mloads = marshal.loads