/usr/share/pyshared/mayavi/tools/pipeline.py is in mayavi2 4.1.0-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 | """
API module grouping all the mlab functions to manipulate directly the
pipeline.
"""
# Author: Gael Varoquaux <gael.varoquaux@normalesup.org>
# Copyright (c) 2007-2009, Enthought, Inc.
# License: BSD Style.
from modules import *
from sources import *
from filters import *
from tools import add_dataset, set_extent, add_module_manager, \
get_vtk_src
from probe_data import probe_data
from tools import _traverse as traverse
|