/usr/share/pyshared/apptools/scripting/api.py is in python-apptools 4.1.0-0ubuntu1.
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 | """Public API for the scripting package.
"""
# Author: Prabhu Ramachandran <prabhu@aero.iitb.ac.in>
# Copyright (c) 2008, Prabhu Ramachandran and Enthought, Inc.
# License: BSD Style.
from recorder import Recorder, RecorderError
from recordable import recordable
from package_globals import get_recorder, set_recorder
from recorder_with_ui import RecorderWithUI
from util import start_recording, stop_recording
|