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

"""Functionality to provide compatibility across supported python versions""" 

from __future__ import unicode_literals, division, absolute_import, print_function 

 

# python 2.7 compatibility: see http://stackoverflow.com/a/21368622 

try: 

FileNotFoundError 

except NameError: 

FileNotFoundError = IOError