This file is indexed.

/usr/lib/python2.7/dist-packages/dicom/attribute.py is in python-dicom 0.9.7-1.1ubuntu1.

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
# attribute.py
"""Deprecated -- to be removed in pydicom 1.0. Use dataelem module instead
"""
#
# Copyright (c) 2008 Darcy Mason
# This file is part of pydicom, released under a modified MIT license.
#    See the file license.txt included with this distribution, also
#    available at http://pydicom.googlecode.com
#

# Deprecated, but load old names into this namespace so older code will still work
import warnings
warnings.warn("dicom.attribute is deprecated and will be removed in pydicom 1.0. Use dicom.dataelem instead.", DeprecationWarning)

from dicom.dataelem import *