调用`size`时为什么PyAutoGUI会冻结?

时间:2015-03-31 17:02:47

标签: python

我正在尝试测试一行PyAutoGUI,但是一旦调用了size方法就会卡住它。

import pyautogui
print("Library imported")
screenWidth, screenHeight = pyautogui.size()
print("Measurements taken")
pyautogui.moveTo(screenWidth / 2, screenHeight / 2)
print("Cursor moved")

终端没有打印“测量值”并且不会终止该过程。我在控制台日志中发现了这个错误:

31/03/2015 15:57:30.000 kernel[0]: process Python[2574] caught causing excessive wakeups. Observed wakeups rate (per sec): 822; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45377

我运行了一个跟踪器以查看它被卡住的位置,显然该过程的最后一行是:

pyautogui/__init__.py:122   line          return platformModule._size()

该计划未超过calling platformModule._size() in the library

我的环境是OSX Yosemite,我已经安装了pyobjc和pyobjc-core。

0 个答案:

没有答案