Pickler.py 文件源码

python
阅读 25 收藏 0 点赞 0 评论 0

项目:oshaughnessey 作者: vincentjs 项目源码 文件源码
def setError(self, source, i, stocks):
        "Triggers the error protocol. Saves source, index, and stocks to PKL file."

        self.hasErrorOccurred = True

        print('\n')
        print('The connection has been severed. Saving existing data to: ' +
        self.fileName)

        with open(self.fileName, 'wb') as pklFile:
            pickler = pickle.Pickler(pklFile, pickle.HIGHEST_PROTOCOL)

            # Dump location
            pickler.dump(source)
            # Dump page number
            pickler.dump(i)
            # Dump stocks list
            pickler.dump(stocks)

        return
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号