标签:注意 python3 max queue pytho import imp 注意事项 python
1 queue:
python2: import Queue
python3: import queue
2 queue size:
python2: cache = Queue.Queue(maxsize=5)
python3: cache = queue.Queue(maxsize=5)
标签:注意 python3 max queue pytho import imp 注意事项 python
原文地址:https://www.cnblogs.com/dylancao/p/9392301.html