/usr/lib/python3/dist-packages/nose2/exceptions.py is in python3-nose2 0.7.4-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 | # This module contains some code copied from unittest2/ and other code
# developed in reference to unittest2.
# unittest2 is Copyright (c) 2001-2010 Python Software Foundation; All
# Rights Reserved. See: http://docs.python.org/license.html
__unittest = True
class TestNotFoundError(Exception):
"""Raised when a named test cannot be found"""
class LoadTestsFailure(Exception):
"""Raised when a test cannot be loaded"""
|