--- Modules/objc-runtime-compat.m 2016-01-20 22:15:49.000000000 -0500
+++ Modules/objc/objc-runtime-compat.m 2016-01-20 22:18:21.000000000 -0500
#endif /* (MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5) || defined(__OBJC2__) */
-@implementation Protocol (NSObjectCompat)
-#if PyObjC_BUILD_RELEASE < 1008
-@implementation Object (NSObjectCompat)
--doesNotRecognizeSelector:(SEL)sel
- printf("--> %s\n", sel_getName(sel));
-#endif /* PyObjC_BUILD_RELEASE < 1008 */
#if (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_7)
Protocol* (*PyObjC_objc_allocateProtocol)(const char *) = NULL;
--- Modules/objc_support.m 2016-01-20 22:16:08.000000000 -0500
+++ Modules/objc/objc_support.m 2016-01-20 22:19:23.000000000 -0500
+(PyObject*)__pyobjc_PythonTransient__:(int*)cookie;
-@implementation NSObject (PyObjCSupport)
--(PyObject*)__pyobjc_PythonObject__
- rval = PyObjC_FindPythonProxy(self);
- rval = PyObjC_TryCreateCFProxy(self);
- if (rval == NULL && PyErr_Occurred()) {
- rval = (PyObject *)PyObjCObject_New(self,
- PyObjCObject_kDEFAULT, YES);
- PyObjC_RegisterPythonProxy(self, rval);
-+(PyObject*)__pyobjc_PythonObject__
- //rval = PyObjC_FindPythonProxy(self);
- rval = (PyObject *)PyObjCClass_New(self);
- //PyObjC_RegisterPythonProxy(self, rval);
--(PyObject*)__pyobjc_PythonTransient__:(int*)cookie
- PyObject* result = PyObjC_FindPythonProxy(self);