This file is indexed.

/usr/share/pyshared/tp/netlib/objects/ObjectExtra/Universe.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
from xstruct import pack
from objects import Object

class Universe(Object):
	"""\
	The Universe is the top level object, everyone can always get it. It does not handle much itself.

	It only has one piece of data, that is the int32 turn number, also know as the year since game start.
	"""
	subtype = 0
	substruct = "I"

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

		self.length += 4
		self.turn = turn
	
	def __str__(self):
		output = Object.__str__(self)
		output += pack(self.substruct, self.turn)

		return output