From bc922755f324a6a0919856327aa8392ad6970d60 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Thu, 16 Nov 2000 17:14:04 +0000 Subject: [PATCH] remove sole use of expect_and_absorb_non_null [SVN r8229] --- subclass.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subclass.cpp b/subclass.cpp index 2f01967c..28a4a1cf 100644 --- a/subclass.cpp +++ b/subclass.cpp @@ -426,7 +426,7 @@ int Instance::setattr(const char* name, PyObject* value) // If we found an appropriate special method, handle the return value. if (special_method.get() != 0) { - expect_and_absorb_non_null(result_object); + Ptr manage_result(result_object); return 0; }