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