mirror of https://github.com/cool-RR/PySnooper.git
15 lines
485 B
Python
15 lines
485 B
Python
# Copyright 2019 Ram Rachum and collaborators.
|
|
# This program is distributed under the MIT license.
|
|
|
|
from .pysnooper import snoop
|
|
from .variables import Attrs, Exploding, Indices, Keys
|
|
import collections
|
|
|
|
__VersionInfo = collections.namedtuple('VersionInfo',
|
|
('major', 'minor', 'micro'))
|
|
|
|
__version__ = '0.0.28'
|
|
__version_info__ = __VersionInfo(*(map(int, __version__.split('.'))))
|
|
|
|
del collections, __VersionInfo # Avoid polluting the namespace
|