/usr/lib/python3/dist-packages/rasterio/five.py is in python3-rasterio 0.31.0-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # Python 2-3 compatibility
import itertools
import sys
if sys.version_info[0] >= 3:
string_types = str,
text_type = str
integer_types = int,
zip_longest = itertools.zip_longest
else:
string_types = basestring,
text_type = unicode
integer_types = int, long
zip_longest = itertools.izip_longest
|