This file is indexed.

/usr/share/pyshared/FontTools/fontTools/ttLib/tables/asciiTable.py is in fonttools 2.4-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
import string
import DefaultTable


class asciiTable(DefaultTable.DefaultTable):
	
	def toXML(self, writer, ttFont):
		data = self.data
		# removing null bytes. XXX needed??
		data = string.split(data, '\0')
		data = string.join(data, '')
		writer.begintag("source")
		writer.newline()
		writer.write_noindent(string.replace(data, "\r", "\n"))
		writer.newline()
		writer.endtag("source")
		writer.newline()
	
	def fromXML(self, (name, attrs, content), ttFont):
		lines = string.split(string.replace(string.join(content, ""), "\r", "\n"), "\n")
		self.data = string.join(lines[1:-1], "\r")