/usr/share/pyshared/statsmodels/compatnp/collections.py is in python-statsmodels 0.4.2-1.2.
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 | '''backported compatibility functions for Python's collections
'''
try:
#python >= 2.7
from collections import OrderedDict
except ImportError:
#http://code.activestate.com/recipes/576693/
#author: Raymond Hettinger
from ordereddict import OrderedDict
|