このメソッドを使用して作成したピクルスファイルは、強制的に開くとテキストエディタで読み取ることができます。
import pickle,os
print os.path.split(__file__)[0]
storloc= os.path.normpath(os.path.join(os.path.split(__file__)[0],"test.pkl"))
newD={"String":"this is the world", "int":1,"float":1.5}
print newD
print storloc
d = open(storloc, 'wb')
pickle.dump(newD,d)
d.close()
ピクルスファイル(test.pkl)をテキストエディタで読めなくする方法は?