Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed hash wrapper from Python. #323

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion python/ecl/util/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ set(PYTHON_SOURCES
bool_vector.py
ctime.py
double_vector.py
hash.py
int_vector.py
install_abort_signals.py
lookup_table.py
Expand Down
1 change: 0 additions & 1 deletion python/ecl/util/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@
from .matrix import Matrix
from .stat import quantile, quantile_sorted, polyfit
from .lookup_table import LookupTable
from .hash import Hash, StringHash, DoubleHash, IntegerHash
from .thread_pool import ThreadPool
from .cthread_pool import CThreadPool, startCThreadPool
from .install_abort_signals import installAbortSignals, updateAbortSignals
Expand Down
134 changes: 0 additions & 134 deletions python/ecl/util/hash.py

This file was deleted.

1 change: 0 additions & 1 deletion python/ert/util/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
from ecl.util import Matrix
from ecl.util import quantile, quantile_sorted, polyfit
from ecl.util import LookupTable
from ecl.util import Hash, StringHash, DoubleHash, IntegerHash
from ecl.util import ThreadPool
from ecl.util import CThreadPool, startCThreadPool
from ecl.util import installAbortSignals, updateAbortSignals
Expand Down
1 change: 0 additions & 1 deletion python/tests/legacy_tests/test_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
from ert.util import Matrix
from ert.util import quantile, quantile_sorted, polyfit
from ert.util import LookupTable
from ert.util import Hash, StringHash, DoubleHash, IntegerHash
from ert.util import ThreadPool
from ert.util import CThreadPool, startCThreadPool
from ert.util import installAbortSignals, updateAbortSignals
Expand Down
2 changes: 0 additions & 2 deletions python/tests/util_tests/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
set(TEST_SOURCES
__init__.py
test_ctime.py
test_hash.py
test_lookup_table.py
test_matrix.py
test_rng.py
Expand All @@ -21,7 +20,6 @@ set(TEST_SOURCES
add_python_package("python.tests.util_tests" ${PYTHON_INSTALL_PREFIX}/tests/util_tests "${TEST_SOURCES}" False)

addPythonTest(tests.util_tests.test_ctime.CTimeTest)
addPythonTest(tests.util_tests.test_hash.HashTest)
addPythonTest(tests.util_tests.test_lookup_table.LookupTableTest )
addPythonTest(tests.util_tests.test_matrix.MatrixTest )
addPythonTest(tests.util_tests.test_rng.RngTest )
Expand Down
68 changes: 0 additions & 68 deletions python/tests/util_tests/test_hash.py

This file was deleted.