[Pythonmac-SIG] IOKit and python/py2app

2011-11-23 Thread Mel Walker
I have a kernel extension that uses IOKit to communicate with a small process up in user space. We are a python shop, and we'd rather use python of possible, but IOKit doesn't seem to be supported. Is our only choice to create some kind of C-based extension? --

[Pythonmac-SIG] disableRelaunchOnLogin and PyObjC

2011-10-16 Thread Mel Walker
I have a utility application that should not be relaunched on login, so I figure I'd better call [NSApp -disableRelaunchOnLogin] in the code, as recommended for 10.7. The problem I'm having is that the code runs back to 10.5. In Objective-C I would just call respondsToSelector:, but I'm having