This file is indexed.

/usr/lib/python3/dist-packages/fontTools/ttLib/tables/_c_i_d_g.py is in python3-fonttools 3.21.2-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
# coding: utf-8
from __future__ import print_function, division, absolute_import
from fontTools.misc.py23 import *
from .otBase import BaseTTXConverter


# The AAT ‘cidg’ table has almost the same structure as ‘gidc’,
# just mapping CIDs to GlyphIDs instead of the reverse direction.
#
# It is useful for fonts that may be used by a PDF renderer in lieu of
# a font reference with a known glyph collection but no subsetted
# glyphs.  For instance, a PDF can say “please use a font conforming
# to Adobe-Japan-1”; the ‘cidg’ mapping is necessary if the font is,
# say, a TrueType font.  ‘gidc’ is lossy for this purpose and is
# obsoleted by ‘cidg’.
#
# For example, the first font in /System/Library/Fonts/PingFang.ttc
# (which Apple ships pre-installed on MacOS 10.12.6) has a ‘cidg’ table.
class table__c_i_d_g(BaseTTXConverter):
    pass