/usr/share/pyshared/sidlBaseException.py is in python-sidl 1.4.0.dfsg-8.2.
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 | #
# File: sidlBaseException.py
# Copyright (c) 2005 Lawrence Livermore National Security, LLC
# $Revision$
# $Date$
#
class sidlBaseException(Exception):
"""Base class for all SIDL Exception classes"""
def __init__(self, exception):
self.exception = exception
|