This file is indexed.

/usr/lib/python2.7/dist-packages/smmap/exc.py is in python-smmap 0.8.2-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
"""Module with system exceptions"""

class MemoryManagerError(Exception):
	"""Base class for all exceptions thrown by the memory manager"""
	
class RegionCollectionError(MemoryManagerError):
	"""Thrown if a memory region could not be collected, or if no region for collection was found"""