Skip to content

Commit 9016fe1

Browse files
authored
Fix imports for all namespace packages (TheAlgorithms#2506)
* Fix imports as they're namespace packages * Fix import for scripts/validate_filenames.py * Fix path in doctest
1 parent 48357ce commit 9016fe1

17 files changed

+27
-24
lines changed

ciphers/affine_cipher.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import random
22
import sys
33

4-
import cryptomath_module as cryptomath
4+
from . import cryptomath_module as cryptomath
55

66
SYMBOLS = (
77
r""" !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`"""

ciphers/elgamal_key_generator.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import random
33
import sys
44

5-
import cryptomath_module as cryptoMath
6-
import rabin_miller as rabinMiller
5+
from . import cryptomath_module as cryptoMath
6+
from . import rabin_miller as rabinMiller
77

88
min_primitive_root = 3
99

ciphers/rsa_cipher.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
import sys
33

4-
import rsa_key_generator as rkg
4+
from . import rsa_key_generator as rkg
55

66
DEFAULT_BLOCK_SIZE = 128
77
BYTE_SIZE = 256

ciphers/rsa_key_generator.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import random
33
import sys
44

5-
import cryptomath_module as cryptoMath
6-
import rabin_miller as rabinMiller
5+
from . import cryptomath_module as cryptoMath
6+
from . import rabin_miller as rabinMiller
77

88

99
def main():

ciphers/transposition_cipher_encrypt_decrypt_file.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import sys
33
import time
44

5-
import transposition_cipher as transCipher
5+
from . import transposition_cipher as transCipher
66

77

88
def main():

data_structures/hashing/double_hash.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
2-
from hash_table import HashTable
3-
from number_theory.prime_numbers import check_prime, next_prime
2+
from .hash_table import HashTable
3+
from .number_theory.prime_numbers import check_prime, next_prime
44

55

66
class DoubleHash(HashTable):

data_structures/hashing/hash_table.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
from number_theory.prime_numbers import next_prime
2+
from .number_theory.prime_numbers import next_prime
33

44

55
class HashTable:

data_structures/hashing/hash_table_with_linked_list.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from collections import deque
22

3-
from hash_table import HashTable
3+
from .hash_table import HashTable
44

55

66
class HashTableWithLinkedList(HashTable):

data_structures/hashing/quadratic_probing.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22

3-
from hash_table import HashTable
3+
from .hash_table import HashTable
44

55

66
class QuadraticProbing(HashTable):

data_structures/linked_list/deque_doubly.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def remove_first(self):
112112
...
113113
IndexError: remove_first from empty list
114114
>>> d.add_first('A') # doctest: +ELLIPSIS
115-
<linked_list.deque_doubly.LinkedDeque object at ...
115+
<data_structures.linked_list.deque_doubly.LinkedDeque object at ...
116116
>>> d.remove_first()
117117
'A'
118118
>>> d.is_empty()
@@ -132,7 +132,7 @@ def remove_last(self):
132132
...
133133
IndexError: remove_first from empty list
134134
>>> d.add_first('A') # doctest: +ELLIPSIS
135-
<linked_list.deque_doubly.LinkedDeque object at ...
135+
<data_structures.linked_list.deque_doubly.LinkedDeque object at ...
136136
>>> d.remove_last()
137137
'A'
138138
>>> d.is_empty()

data_structures/queue/circular_queue.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def __len__(self) -> int:
1717
>>> len(cq)
1818
0
1919
>>> cq.enqueue("A") # doctest: +ELLIPSIS
20-
<circular_queue.CircularQueue object at ...
20+
<data_structures.queue.circular_queue.CircularQueue object at ...
2121
>>> len(cq)
2222
1
2323
"""
@@ -48,11 +48,11 @@ def enqueue(self, data):
4848
This function insert an element in the queue using self.rear value as an index
4949
>>> cq = CircularQueue(5)
5050
>>> cq.enqueue("A") # doctest: +ELLIPSIS
51-
<circular_queue.CircularQueue object at ...
51+
<data_structures.queue.circular_queue.CircularQueue object at ...
5252
>>> (cq.size, cq.first())
5353
(1, 'A')
5454
>>> cq.enqueue("B") # doctest: +ELLIPSIS
55-
<circular_queue.CircularQueue object at ...
55+
<data_structures.queue.circular_queue.CircularQueue object at ...
5656
>>> (cq.size, cq.first())
5757
(2, 'A')
5858
"""

data_structures/queue/priority_queue_using_list.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class FixedPriorityQueue:
5959
>>> fpq.dequeue()
6060
Traceback (most recent call last):
6161
...
62-
priority_queue_using_list.UnderFlowError: All queues are empty
62+
data_structures.queue.priority_queue_using_list.UnderFlowError: All queues are empty
6363
>>> print(fpq)
6464
Priority 0: []
6565
Priority 1: []
@@ -141,7 +141,7 @@ class ElementPriorityQueue:
141141
>>> epq.dequeue()
142142
Traceback (most recent call last):
143143
...
144-
priority_queue_using_list.UnderFlowError: The queue is empty
144+
data_structures.queue.priority_queue_using_list.UnderFlowError: The queue is empty
145145
>>> print(epq)
146146
[]
147147
"""

geodesy/lamberts_ellipsoidal_distance.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from math import atan, cos, radians, sin, tan
22

3-
from haversine_distance import haversine_distance
3+
from .haversine_distance import haversine_distance
44

55

66
def lamberts_ellipsoidal_distance(

greedy_method/test_knapsack.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import unittest
22

3-
import greedy_knapsack as kp
3+
from . import greedy_knapsack as kp
44

55

66
class TestClass(unittest.TestCase):

linear_algebra/src/test_linear_algebra.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"""
99
import unittest
1010

11-
from lib import Matrix, Vector, axpy, squareZeroMatrix, unitBasisVector, zeroVector
11+
from .lib import Matrix, Vector, axpy, squareZeroMatrix, unitBasisVector, zeroVector
1212

1313

1414
class Test(unittest.TestCase):

scripts/validate_filenames.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
#!/usr/bin/env python3
22
import os
33

4-
from build_directory_md import good_file_paths
4+
try:
5+
from .build_directory_md import good_file_paths
6+
except ImportError:
7+
from build_directory_md import good_file_paths
58

69
filepaths = list(good_file_paths())
710
assert filepaths, "good_file_paths() failed!"

searches/simulated_annealing.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import math
33
import random
44

5-
from hill_climbing import SearchProblem
5+
from .hill_climbing import SearchProblem
66

77

88
def simulated_annealing(

0 commit comments

Comments
 (0)