from java.io import * from org.python.util import * SINGL= None #Ellipsis class Test(Serializable): def __init__(self): self.attr = SINGL def test(self): print "attr is", self.attr,"=>", self.attr is SINGL print "attr type is:", type(self.attr) print "attr ==", self.attr,"=>", self.attr == SINGL def load(path): file = File(path) fileIn = FileInputStream(file) pyIn = PythonObjectInputStream(fileIn) pyObj = pyIn.readObject() pyIn.close() return pyObj def save(obj, path): fileOut = FileOutputStream(path) objOut = ObjectOutputStream(fileOut) objOut.writeObject(obj) objOut.flush() objOut.close() print "Testing initial object..." a = Test() a.test() save(a, "test.out") b = load("test.out") print "Testing deserialized object..." b.test()