__init__.py.bak
1 import sys 2 3 if getattr(sys, 'frozen', None): 4 from test_addresses import TestAddresses 5 from test_crypto import TestHighlevelcrypto 6 from test_l10n import TestL10n 7 from test_packets import TestSerialize 8 from test_protocol import TestProtocol 9 10 __all__ = [ 11 "TestAddresses", "TestHighlevelcrypto", "TestL10n", 12 "TestProtocol", "TestSerialize" 13 ]