/usr/share/pyshared/uncertainties/unumpy/ulinalg.py is in python-uncertainties 2.4.4-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 | """
This module provides uncertainty-aware functions that generalize some
of the functions from numpy.linalg.
(c) 2010-2013 by Eric O. LEBIGOT (EOL) <eric.lebigot@normalesup.org>.
"""
from uncertainties import __author__
from uncertainties.unumpy.core import inv, pinv
# This module cannot import unumpy because unumpy imports this module.
__all__ = ['inv', 'pinv']
|