python2程序移植python3的一些注意事项
Posted 虚生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python2程序移植python3的一些注意事项相关的知识,希望对你有一定的参考价值。
1 queue:
python2: import Queue
python3: import queue
2 queue size:
python2: cache = Queue.Queue(maxsize=5)
python3: cache = queue.Queue(maxsize=5)
以上是关于python2程序移植python3的一些注意事项的主要内容,如果未能解决你的问题,请参考以下文章
在将 python2 项目移植到 python3 时,mobileesp 的中间件出现错误