This file is indexed.

/usr/lib/python3/dist-packages/UM/VersionUpgrade.py is in python3-uranium 3.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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Copyright (c) 2016 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.

from UM.PluginObject import PluginObject


##  A type of plug-in that upgrades the configuration from an old file format to
#   a newer one.
#
#   Each version upgrade plug-in can convert from some combinations of
#   configuration types and versions to other types and versions. Which types
#   and versions they can convert from though is completely free, and the
#   conversion functions are referred to by the metadata of the plug-in. That's
#   why this interface is basically empty. A plug-in object is needed for the
#   plug-in registry.
class VersionUpgrade(PluginObject):
    ##  Initialises a version upgrade plugin instance.
    def __init__(self):
        super().__init__()


##  An exception to throw if the formatting of a file is wrong.
class FormatException(Exception):
    ##  Creates the exception instance.
    #
    #   \param message A message indicating what went wrong.
    #   \param file The file it went wrong in.
    def __init__(self, message, file = ""):
        self._message = message
        self._file = file

    ##  Gives a human-readable representation of this exception.
    #
    #   \return A human-readable representation of this exception.
    def __str__(self):
        return "Exception parsing " + self._file + ": " + self._message


##  An exception to throw if the version number of a file is wrong.
class InvalidVersionException(Exception):
    pass