This file is indexed.

/usr/lib/python3/dist-packages/postgresql/types/io/pg_system.py is in python3-postgresql 1.1.0-2build2.

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
from ...types import OIDOID, XIDOID, CIDOID, TIDOID
from . import lib

oid_to_io = {
	OIDOID : (lib.oid_pack, lib.oid_unpack),
	XIDOID : (lib.xid_pack, lib.xid_unpack),
	CIDOID : (lib.cid_pack, lib.cid_unpack),
	TIDOID : (lib.tid_pack, lib.tid_unpack),
	#ACLITEMOID : (aclitem_pack, aclitem_unpack),
}