/usr/share/pyshared/nifti/nifticlib.py is in python-nifti 0.20100607.1-4.
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 18 19 | #emacs: -*- mode: python-mode; py-indent-offset: 4; indent-tabs-mode: nil -*-
#ex: set sts=4 ts=4 sw=4 et:
### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##
#
# See COPYING file distributed along with the PyNIfTI package for the
# copyright and license terms.
#
### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##
"""Only here for backward compatibility."""
__docformat__ = 'restructuredtext'
from warnings import warn
warn("This module has been renamed to 'nifti.clib'. This redirect will be removed with PyNIfTI 1.0.", DeprecationWarning)
from nifti.image import *
|