/ src / pyelliptic / tests / __init__.py.bak
__init__.py.bak
1  import sys
2  
3  if getattr(sys, 'frozen', None):
4      from test_arithmetic import TestArithmetic
5      from test_blindsig import TestBlindSig
6      from test_ecc import TestECC
7      from test_openssl import TestOpenSSL
8  
9      __all__ = ["TestArithmetic", "TestBlindSig", "TestECC", "TestOpenSSL"]