This file is indexed.

/usr/share/shedskin/lib/binascii.py is in shedskin 0.9.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
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Copyright 2005-2011 Mark Dufour and contributors; License Expat (See LICENSE)

class Error(Exception):
    pass

class Incomplete(Exception):
    pass

def a2b_uu(string):
    return ""
def b2a_uu(data):
    return ""
def a2b_base64(string):
    return ""
def b2a_base64(data):
    return ""
def a2b_qp(string, header=False):
    return ""
def b2a_qp(data, quotetabs=False, istext=False, header=False):
    return ""
def a2b_hqx(string):
    return ("",0)
def b2a_hqx(data):
    return ""
def rledecode_hqx(data):
    return ""
def rlecode_hqx(data):
    return ""
def crc_hqx(data, crc):
    return 0
def crc32(data, crc=0):
    return 0
def b2a_hex(data):
    return ""
def a2b_hex(data):
    return ""
def hexlify(data):
    return ""
def unhexlify(data):
    return ""