Evt.TickCount() not found with Python2.6 on OSX 10.6.3
问题 With Python2.6, the Evt module (from Carbon import Evt) does not have seem to respond to TickCount() on OSX. But Python2.5 is fine: from Carbon import Evt s = Evt.TickCount() On Python2.5 I get a returned integer. On Python2.6 I get: AttributeError: 'module' object has no attribute 'TickCount' This is on Snow Leopard. Is there some library that needs to be updated on OSX to allow for TickCount() to work? I'm actually having this problem due to using py2app. Update for Barry's answer: The