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 语法区别

在将 python2 项目移植到 python3 时,mobileesp 的中间件出现错误

将 Python 2 程序移植到 Python 3,随机行生成器

移植Python2到TQ2440

我怎样才能更多地了解 Python 的内部结构? [关闭]

Twisted on Python3的真实现状是什么?