This file is indexed.

/usr/lib/python3/dist-packages/eventlet/green/http/cookiejar.py is in python3-eventlet 0.18.4-1ubuntu1.

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
from eventlet.green import threading, time
from eventlet.green.http import client
from eventlet.green.urllib import parse as urllib_parse, request as urllib_request
from eventlet import patcher

patcher.inject('http.cookiejar', globals(),
               ('http.client', client), ('threading', threading),
               ('urllib.parse', urllib_parse), ('urllib.request', urllib_request),
               ('time', time))

del urllib_request
del urllib_parse
del patcher