projects
/
linpy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dedaed5
)
Remove useless imports
author
Vivien Maisonneuve
<v.maisonneuve@gmail.com>
Thu, 19 Jun 2014 09:25:48 +0000
(11:25 +0200)
committer
Vivien Maisonneuve
<v.maisonneuve@gmail.com>
Thu, 19 Jun 2014 15:39:41 +0000
(17:39 +0200)
pypol/__init__.py
patch
|
blob
|
history
pypol/isl.py
patch
|
blob
|
history
pypol/linear.py
patch
|
blob
|
history
tests/test_isl.py
patch
|
blob
|
history
tests/test_linear.py
patch
|
blob
|
history
diff --git
a/pypol/__init__.py
b/pypol/__init__.py
index cd278ce9c5d18a3626d590e534a58aebc71d20d8..a6ea752429f025948fce051a480d4b5ae9ff1f52 100644
(file)
--- a/
pypol/__init__.py
+++ b/
pypol/__init__.py
@@
-1,4
+1,3
@@
-
"""
A polyhedral library based on ISL.
"""
diff --git
a/pypol/isl.py
b/pypol/isl.py
index a95bba3e937b724836c58c34b0fe6e8f9cd5004f..ecc32c7f9138c83634b264f4682751b202ea2431 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
diff --git
a/pypol/linear.py
b/pypol/linear.py
index 2e48a31290a199eae8253252cd00bdcd9c7586d5..75ae166bf1a23bd1d2c369a24d7f526b59aa7d52 100644
(file)
--- a/
pypol/linear.py
+++ b/
pypol/linear.py
@@
-1,4
+1,3
@@
-import ctypes, ctypes.util
import functools
import numbers
diff --git
a/tests/test_isl.py
b/tests/test_isl.py
index 421b1beacc076f76aad89652f2688907cbd18628..21374b50f73757115fbf3fee0a7f48128b7b4bdf 100644
(file)
--- a/
tests/test_isl.py
+++ b/
tests/test_isl.py
@@
-1,4
+1,3
@@
-
import unittest
from math import floor, ceil, trunc
diff --git
a/tests/test_linear.py
b/tests/test_linear.py
index 039ffc73b465f8ca45fcdcb362e418a1617c137d..96b105c9f8671e1fcd61e78ad9d7e814f4dafa45 100644
(file)
--- a/
tests/test_linear.py
+++ b/
tests/test_linear.py
@@
-1,4
+1,3
@@
-
import unittest
from fractions import Fraction