From 06970fb7f31f7b08236c0bd6ec164e269449a2bd Mon Sep 17 00:00:00 2001 From: Torsten Landschoff Date: Fri, 2 Aug 2013 01:48:31 +0200 Subject: [PATCH] Fixed no_gc_clear test for Python 3. --- tests/run/no_gc_clear.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/run/no_gc_clear.pyx b/tests/run/no_gc_clear.pyx index d0939a2..da8348f 100644 --- a/tests/run/no_gc_clear.pyx +++ b/tests/run/no_gc_clear.pyx @@ -25,8 +25,8 @@ cdef class DisableTpClear: >>> uut = DisableTpClear() >>> uut.call_tp_clear() - >>> type(uut.requires_cleanup) - + >>> type(uut.requires_cleanup) == list + True >>> del uut """ -- 2.7.4