X-Git-Url: https://scm.cri.ensmp.fr/git/linpy.git/blobdiff_plain/b8db6f46d0b4d551cf1f42bff160493de84168be..5c08207a9606e513944a4ba01e6674ee8e13508a:/pypol/isl.py diff --git a/pypol/isl.py b/pypol/isl.py index dcd2496..ecc32c7 100644 --- a/pypol/isl.py +++ b/pypol/isl.py @@ -1,9 +1,4 @@ import ctypes, ctypes.util -import functools -import math -import numbers -import operator -import re from . import _isl @@ -29,7 +24,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):