This file is indexed.

/usr/share/pyshared/tp/netlib/objects/ObjectExtra/Fleet.py is in python-tp-netlib 0.2.5-3.

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
42
43
from xstruct import pack
from objects import Object

class Fleet(Object):
	"""\
	A fleet is a collection of ships. Many different ships can make up a fleet.

	A fleet has an owner, Int32 Player ID.
	"""
	subtype = 4
	substruct = "j[II]I"

	def __init__(self, sequence, \
			id, type, name, \
			size, \
			posx, posy, posz, \
			velx, vely, velz, \
			contains, \
			order_types, \
			order_number, \
			modify_time, \
			owner, ships, damage):
		Object.__init__(self, sequence, \
			id, type, name, \
			size, \
			posx, posy, posz, \
			velx, vely, velz, \
			contains, \
			order_types, \
			order_number, \
			modify_time)

		self.length += 4 + 4 + len(ships) * 8 + 4

		self.owner = owner
		self.ships = ships
		self.damage = damage

	def __str__(self):
		output = Object.__str__(self)
		output += pack(self.substruct, self.owner, self.ships, self.damage)

		return output