This file is indexed.

/usr/lib/python2.7/dist-packages/ipywidgets/widgets/__init__.py is in python-ipywidgets 5.2.2-3.

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
from .widget import Widget, CallbackDispatcher, register, widget_serialization, handle_version_comm_opened
from .domwidget import DOMWidget

from .trait_types import Color, EventfulDict, EventfulList

from .widget_bool import Checkbox, ToggleButton, Valid
from .widget_button import Button
from .widget_box import Box, FlexBox, Proxy, PlaceProxy, HBox, VBox
from .widget_float import FloatText, BoundedFloatText, FloatSlider, FloatProgress, FloatRangeSlider
from .widget_image import Image
from .widget_int import IntText, BoundedIntText, IntSlider, IntProgress, IntRangeSlider, Play
from .widget_color import ColorPicker
from .widget_output import Output
from .widget_selection import RadioButtons, ToggleButtons, Dropdown, Select, SelectionSlider, SelectMultiple
from .widget_selectioncontainer import Tab, Accordion
from .widget_string import HTML, Label, Latex, Text, Textarea
from .widget_controller import Controller
from .interaction import interact, interactive, fixed, interact_manual
from .widget_link import jslink, jsdlink
from .widget_layout import Layout