This file is indexed.

/usr/lib/python3/dist-packages/bugzilla/oldclasses.py is in python3-bugzilla 2.1.0-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
16
17
18
19
20
21
22
23
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.  See http://www.gnu.org/copyleft/gpl.html for
# the full text of the license.

from .base import Bugzilla
from .rhbugzilla import RHBugzilla


# These are old compat classes. Nothing new should be added here,
# and these should not be altered

class Bugzilla3(Bugzilla): pass
class Bugzilla32(Bugzilla): pass
class Bugzilla34(Bugzilla): pass
class Bugzilla36(Bugzilla): pass
class Bugzilla4(Bugzilla): pass
class Bugzilla42(Bugzilla): pass
class Bugzilla44(Bugzilla): pass
class NovellBugzilla(Bugzilla): pass
class RHBugzilla3(RHBugzilla): pass
class RHBugzilla4(RHBugzilla): pass