Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

""" Structural change detection and other statistics 

""" 

from ._version import get_versions 

__version__ = get_versions()['version'] 

del get_versions 

 

__package__ = 'pybreakpoints' 

 

__docs__ = 'https://ceholden.github.io/{pkg}/'.format(pkg=__package__) 

__docs_version__ = '%s/%s' % (__docs__, __version__) 

__repo_url__ = 'https://github.com/ceholden/{pkg}'.format(pkg=__package__) 

__repo_issues__ = '/'.join([__repo_url__, 'issues']) 

 

 

# See: http://docs.python-guide.org/en/latest/writing/logging/ 

import logging # noqa 

try: # Python 2.7+ 

from logging import NullHandler as _NullHandler 

except ImportError: 

class _NullHandler(logging.Handler): 

def emit(self, record): 

pass 

logging.getLogger(__name__).addHandler(_NullHandler())