This file is indexed.

/usr/share/pyshared/tp/netlib/objects/ObjectExtra/Wormhole.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 Wormhole(Object):
	"""\
	The Wormhole is a top level object that links to locations together.

	It was added as a quick hack to make the Risk ruleset a little easier to play.

	It has 3 int64 arguments which are the "other end" of the wormhole.
	"""
	subtype = 5
	substruct = "qqq"

	def __init__(self, sequence, \
			id, type, name, \
			size, \
			startx, starty, startz, \
			velx, vely, velz, \
			contains, \
			order_types, \
			order_number, \
			modify_time, \
			endx, endy, endz):
		Object.__init__(self, sequence, \
			id, type, name, \
			size, \
			startx, starty, startz, \
			velx, vely, velz, \
			contains, \
			order_types, \
			order_number, \
			modify_time)

		self.length += 8*3
		self.start = self.pos
		self.end   = (endx, endy, endz)
	
	def __str__(self):
		output = Object.__str__(self)
		output += pack(self.substruct, *self.end)

		return output