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
cd278ce
..
a6ea752
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
a95bba3
..
ecc32c7
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
2e48a31
..
75ae166
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
421b1be
..
21374b5
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
039ffc7
..
96b105c
100644
(file)
--- a/
tests/test_linear.py
+++ b/
tests/test_linear.py
@@
-1,4
+1,3
@@
-
import unittest
from fractions import Fraction