Skip to content

Commit

Permalink
relative imports reverted back to package imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ph4r05 committed Nov 11, 2017
1 parent 48b33e6 commit aa02aaa
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion booltest/booltest_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import scipy.misc
import scipy.stats

from . import common
from booltest import common

logger = logging.getLogger(__name__)
coloredlogs.install(level=logging.DEBUG)
Expand Down
2 changes: 1 addition & 1 deletion booltest/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from bitstring import Bits, BitArray, BitStream, ConstBitStream
from repoze.lru import lru_cache, LRUCache

from .crypto_util import aes_ctr, get_zero_vector
from booltest.crypto_util import aes_ctr, get_zero_vector

# Enables bitarray - with native C extension
FAST_IMPL = True
Expand Down
4 changes: 2 additions & 2 deletions booltest/randverif.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
import scipy.misc
import scipy.stats

from . import common
from .booltest_main import *
from booltest import common
from booltest.booltest_main import *

logger = logging.getLogger(__name__)
coloredlogs.install(level=logging.DEBUG)
Expand Down
6 changes: 3 additions & 3 deletions booltest/testbatteries.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@

from queue import Queue, Empty as QEmpty

from . import egenerator
from . import common
from .booltest_main import *
from booltest import egenerator
from booltest import common
from booltest.booltest_main import *

logger = logging.getLogger(__name__)
coloredlogs.install(level=logging.DEBUG)
Expand Down
6 changes: 3 additions & 3 deletions booltest/testbed.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
import scipy.misc
import scipy.stats

from . import egenerator
from . import common
from .booltest_main import *
from booltest import egenerator
from booltest import common
from booltest.booltest_main import *


logger = logging.getLogger(__name__)
Expand Down

0 comments on commit aa02aaa

Please sign in to comment.