PySnooper/pysnooper/__init__.py

15 lines
485 B
Python
Raw Normal View History

2019-04-24 09:10:46 +00:00
# Copyright 2019 Ram Rachum and collaborators.
2019-04-19 22:20:27 +00:00
# This program is distributed under the MIT license.
2019-04-24 16:05:33 +00:00
from .pysnooper import snoop
2019-05-03 15:31:39 +00:00
from .variables import Attrs, Exploding, Indices, Keys
2019-04-24 16:05:33 +00:00
import collections
__VersionInfo = collections.namedtuple('VersionInfo',
('major', 'minor', 'micro'))
2019-05-03 16:00:14 +00:00
__version__ = '0.0.29'
__version_info__ = __VersionInfo(*(map(int, __version__.split('.'))))
2019-04-24 16:05:33 +00:00
del collections, __VersionInfo # Avoid polluting the namespace