/usr/lib/python3/dist-packages/imageio/freeze.py is in python3-imageio 2.2.0-1.
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 16 17 | """
Helper functions for freezing imageio.
"""
import sys
def get_includes():
if sys.version_info[0] == 3:
urllib = ['email', 'urllib.request', ]
else:
urllib = ['urllib2']
return urllib + ['numpy', 'zipfile', 'io']
def get_excludes():
return []
|