From 3bbc19830f1dc2432f91bba40123bb60936a0be3 Mon Sep 17 00:00:00 2001 From: Vivien Maisonneuve Date: Wed, 18 Jun 2014 20:26:39 +0200 Subject: [PATCH 1/1] Initialize isl.Context using super's initializer --- pypol/isl.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pypol/isl.py b/pypol/isl.py index dcd2496..a95bba3 100644 --- a/pypol/isl.py +++ b/pypol/isl.py @@ -29,7 +29,8 @@ class IslObject: class Context(IslObject): def __init__(self): - self._ptr = libisl.isl_ctx_alloc() + ptr = libisl.isl_ctx_alloc() + super().__init__(ptr) #comment out so does not delete itself after being created #def __del__(self): -- 2.20.1