Merge pull request #484 from ccaviness/pyobjc

builtin.super doesn't work with Cocoa classes, use objc.super instead
This commit is contained in:
Greg Neagle
2015-06-03 13:42:26 -07:00
+3
View File
@@ -25,6 +25,9 @@ curl replacement using NSURLConnection and friends
import os
import xattr
# builtin super doesn't work with Cocoa classes in recent PyObjC releases.
from objc import super
# PyLint cannot properly find names inside Cocoa libraries, so issues bogus
# No name 'Foo' in module 'Bar' warnings. Disable them.
# pylint: disable=E0611