projects
/
linpy.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Fix Symbol.__slots__
[linpy.git]
/
pypol
/
isl.py
diff --git
a/pypol/isl.py
b/pypol/isl.py
index
a95bba3
..
f15cea1
100644
(file)
--- 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
@@
-16,7
+11,9
@@
libisl.isl_dim_set = _isl.isl_dim_set
class IslObject:
- __slots__ = ('_ptr')
+ __slots__ = (
+ '_ptr',
+ )
def __init__(self, ptr):
self._ptr = ptr