This file is indexed.

/usr/share/pyshared/webtest/__init__.py is in python-webtest 1.3.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
# (c) 2005 Ian Bicking and contributors; written for Paste
# (http://pythonpaste.org)
# Licensed under the MIT license:
# http://www.opensource.org/licenses/mit-license.php
"""
Routines for testing WSGI applications.

Most interesting is app
"""

from webtest.app import TestApp
from webtest.app import TestRequest
from webtest.app import TestResponse
from webtest.app import Form
from webtest.app import Field
from webtest.app import AppError
from webtest.app import Select
from webtest.app import Radio
from webtest.app import Checkbox
from webtest.app import Text
from webtest.app import Textarea
from webtest.app import Hidden
from webtest.app import Submit

from webtest.sel import SeleniumApp
from webtest.sel import selenium