X-Git-Url: https://scm.cri.ensmp.fr/git/linpy.git/blobdiff_plain/b8db6f46d0b4d551cf1f42bff160493de84168be..56ab422e3bbc5a6a072f5b2a5be9d88d1017f03f:/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):