Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python312-envisage-6.1.1-1.6 RPM for noarch

From OpenSuSE Tumbleweed for noarch

Name: python312-envisage Distribution: openSUSE Tumbleweed
Version: 6.1.1 Vendor: openSUSE
Release: 1.6 Build date: Thu Mar 2 19:58:30 2023
Group: Unspecified Build host: reproducible
Size: 1461729 Source RPM: python-envisage-6.1.1-1.6.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/enthought/envisage
Summary: Extensible application framework for Python
Envisage is a Python-based framework for building extensible
applications, that is, applications whose functionality can be
extended by adding "plug-ins". Envisage provides a standard mechanism
for features to be added to an application. When building an
application using Envisage, the entire application consists primarily
of plug-ins. In this respect, it is similar to the Eclipse and
Netbeans frameworks for Java applications.

Part of the Enthought Tool Suite (ETS).

Provides

Requires

License

BSD-3-Clause AND Python-2.0 AND LGPL-3.0-only AND CC-BY-SA-1.0 AND CC-BY-SA-2.0 AND CC-BY-SA-2.5 AND CC-BY-SA-3.0 AND SUSE-Public-Domain

Changelog

* Thu Mar 02 2023 Daniel Garcia <daniel.garcia@suse.com>
  - Remove py310-eggs.tar.gz source, it's upstreamed now.
  - Update to 6.1.1
    * A trait validation error in the Workbench DefaultActionSet has
      been fixed. This fixes a compatibility issue with Traits 6.4.
      (#485)
    * Initialization of application directories now correctly respects
      the value of self.state_location. (#490)
    * In the test suite, egg generation now uses sys.executable to
      ensure it picks up the correct Python executable. (#499)
    * The version of PySide6 used in test workflows has been restricted.
      (#487)
    * The EDM version used in test workflow has been updated. (#484)
    * Various fixes have been made to the GitHub Actions workflows, for
      compatibility with the newest runners. (#491, #494)
    * Copyright headers have been updated for 2023. (#493)
  - 6.1.0
    * The Application.user_data directory no longer includes the id
    * of the application, but instead matches the ETSConfig.user_data. (#467)
    * The Envisage Application will no longer try to change the
    * ETSConfig.application_home attribute. (#467)
    * The PackageResourceProtocol now uses importlib.resources instead
    * of pkg_resources. (#466)
    * The IPython-related features of Envisage require ipykernel version < 6 and
    * IPython version < 8. (#449)
    * Fix EggPluginManager to use current pkg_resources.working_set. (#444)
    * Simplify ImportManager by using importlib. (#465)
    * Update end year in copyright headers. (#458)
* Tue Jan 25 2022 Dirk Müller <dmueller@suse.com>
  - add test eggs for python 3.10 build
* Mon Aug 30 2021 Ben Greiner <code@bnavigator.de>
  - Update to 6.0.1
    * This bugfix release fixes the issue where Extension
      Point resolution was happening too eagerly, which caused
      issues during application startup time in certain cases. We
      recommend all users of Envisage to upgrade to this bugfix
      version.
  - Release 6.0.0
    * This major release focuses on speeding up Envisage
      applications. We achieved this speedup by removing
      unused functionality in the package. Specifically, we
      removed the @contributes_to decorator and the code
      needed to handle methods decorated with the above
      decorator.
    * Additionally, with this release, parts of Envisage
      start using the new Traits observation framework instead
      of the old Traits on_trait_change. So, Envisage now
      depends on Traits version >= 6.2.
  - Don't test with ipykernel => 6 -- gh#enthought/envisage#448
* Mon May 03 2021 Markéta Machová <mmachova@suse.com>
  - Update to 5.0.0
    * Create and fill plugin subpackage api modules
    * Deprecate safeweakref and replace its uses
    * Drop support for Python 3 versions older than Python 3.6.
    * Remove single_project
    * Remove class_load_hooks and ClassLoadHook
  - Remove nose, tests can be run by unittest now
* Thu Jul 09 2020 Marketa Calabkova <mcalabkova@suse.com>
  - Update to 4.9.2
    - Conditionally skip tests that fail against Traits 6.0.0 due to the removal
      of Categories. (#263)
    - Fix tests that fail against Traits 6.0.0 due to the removal
      of double nesting in list events. (#255)
    - Replace a comment mention of ``AdaptedTo`` with ``Supports``. (#253)
    - Remove dependence on ``clean_filename`` from Traits. (#252)
    - Replace a use of the deprecated ``DictStrAny`` trait with
      ``Dict(Str, Any)``. (#250)
* Tue Nov 19 2019 Todd R <toddrme2178@gmail.com>
  - Update to Version 4.9.0
    + Features
    * Add an option to allow the ``InternalIPKernel`` to initialise its kernel at
      kernel creation time. At some point in the future, this will become the
      default behaviour.
    + Fixes
    * Replace a use of the deprecated ``adapts`` function with
      ``register_factory``.
    * In the ``IPKernelApp``, correctly restore the original state of
      ``IPython.utils.io.std*`` streams even if those streams didn't exist
      originally.
    * Remove duplicate copyright header from autogenerated version file.
    + Tests
    * Remove a ``print`` call from a unit test.
    * Add unit tests for the ``envisage.ui.single_project`` adapters.
    * Add unit tests to check that ``InternalIPKernel`` doesn't affect
      ``sys.path``.
    * Fix the test suite not to write to the user's ``~/.ipython`` directory.
    * Fix the test suite not to write to the user's ``~/.enthought`` directory.
    * Remove an unused import and a useless ``tearDown`` method in the
      ``IPythonKernel`` tests.
    * Fix ``DeprecationWarning``s from uses of long-deprecated ``TestCase``
      methods.
    * Add test eggs for Python 3.8.
    + Build
    * Rename changelog extension from ``.txt`` to ``.rst``.
    * Update EDM version used in Travis CI and Appveyor.
    * Add ``mock`` to test dependencies on Python 2.
    * Fix status badges in ``README``.
  - Update to Version 4.8.0
    + Features
    * Improved ``repr`` for ``ExtensionPoint`` objects.
    + Changes
    * Drop support for Python versions older than 2.7 and Python 3 versions older
      than Python 3.5.
    * The ``IPythonKernelPlugin`` now releases all allocated resources (threads,
      file descriptors, etc.) and undoes global state changes at plugin ``stop``
      time.
    * Suppress the Ctrl-C message printed by the IPython kernel at start time.
    * Add license headers to all files, and make license header statements
      consistent.
    + Fixes
    * Use a fixed pickle protocol when saving task layout state, to avoid
      cross-Python-version difficulties.
    * Fix deprecation warnings from use of ``Logger.warn``.
    * Fix some Python 3 syntax errors in example scripts.
    + Removals
    * Remove the unsupported and incomplete ``UpdateCheckerPlugin``.
    * Remove the ``plugin.debug`` empty submodule.
    * Remove the old ``IPythonShell`` plugin, which was based on pre-IPython 1.0.
    * Remove the non-functional ``RefreshCodePlugin``.
    * Remove ``project_runnable``, which was never functional.
    * Remove outdated debugging fallback from the ``ExtensionPoint`` source.
    * Remove ``FBIPlugin``.
    * Remove the ``remote_editor`` plugins.
    + Documentation
    * Add docstrings for tasks plugin extension points.
    * Fix incorrect documentation for ``always_use_default_layout``.
    * Spell "Pyface" correctly.
    * NumPyDoc style fixes.
    * Add API documentation, with corresponding build infrastructure.
    * Fix invalid syntax in Tetris example.
    * Use the Enthought Sphinx Theme for documentation.
    + Tests
    * Remove dependency on the ``nose`` package, and rename test modules. All
      tests can now be discovered and run using ``unittest``.
    + Build
    * Revise version-handling mechanisms and other minor details
      in ``setup.py`` script.
    * Remove unused and outdated ``tox.ini`` file.
    * Update ``etstool.py`` to work with a non-EDM bootstrap environment on
      Windows.
    * Test against other ETS packages from source, using Travis CI cron jobs.
    * Fix deprecated pieces in Travis CI configuration.
    * Update EDM version used, and clean up and simplify Travis CI and
      Appveyor configurations.
    * Usability improvements to ``etstool.py``.
* Tue May 14 2019 Gary Smith <GSmith@suse.com>
  - Update to version 4.7.2
    * no changelog
* Sat Dec 22 2018 Todd R <toddrme2178@gmail.com>
  - Update to version 4.7.0
    * Add failing test and fix for old-style relative import. (#109)
    * Old-style relative import ipython_kernel plugin (#108)
    * Fix attractors example (#103)
    * Use --gui rather than --matplotlib when starting IPython kernel. (#101)
    * InternalIPKernel.shutdown method doesn't stop the kernel's IOPubThread (#93)
    * Fix task layout serialization under Python3
* Fri May 18 2018 jengelh@inai.de
  - Do not assume any specific user in the description.
* Wed May 09 2018 toddrme2178@gmail.com
  - Add license files

Files

/usr/lib/python3.12/site-packages/envisage
/usr/lib/python3.12/site-packages/envisage-6.1.1-py3.12.egg-info
/usr/lib/python3.12/site-packages/envisage-6.1.1-py3.12.egg-info/PKG-INFO
/usr/lib/python3.12/site-packages/envisage-6.1.1-py3.12.egg-info/SOURCES.txt
/usr/lib/python3.12/site-packages/envisage-6.1.1-py3.12.egg-info/dependency_links.txt
/usr/lib/python3.12/site-packages/envisage-6.1.1-py3.12.egg-info/entry_points.txt
/usr/lib/python3.12/site-packages/envisage-6.1.1-py3.12.egg-info/not-zip-safe
/usr/lib/python3.12/site-packages/envisage-6.1.1-py3.12.egg-info/requires.txt
/usr/lib/python3.12/site-packages/envisage-6.1.1-py3.12.egg-info/top_level.txt
/usr/lib/python3.12/site-packages/envisage/__init__.py
/usr/lib/python3.12/site-packages/envisage/__pycache__
/usr/lib/python3.12/site-packages/envisage/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/api.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/api.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/application.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/application.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/application_event.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/application_event.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/composite_plugin_manager.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/composite_plugin_manager.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/core_plugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/core_plugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/egg_basket_plugin_manager.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/egg_basket_plugin_manager.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/egg_plugin_manager.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/egg_plugin_manager.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/egg_utils.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/egg_utils.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/extension_point.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/extension_point.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/extension_point_binding.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/extension_point_binding.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/extension_point_changed_event.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/extension_point_changed_event.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/extension_provider.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/extension_provider.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/extension_registry.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/extension_registry.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/i_application.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/i_application.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/i_extension_point.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/i_extension_point.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/i_extension_point_user.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/i_extension_point_user.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/i_extension_provider.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/i_extension_provider.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/i_extension_registry.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/i_extension_registry.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/i_import_manager.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/i_import_manager.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/i_plugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/i_plugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/i_plugin_activator.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/i_plugin_activator.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/i_plugin_manager.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/i_plugin_manager.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/i_provider_extension_registry.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/i_provider_extension_registry.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/i_service_registry.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/i_service_registry.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/i_service_user.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/i_service_user.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/ids.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/ids.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/import_manager.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/import_manager.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/package_plugin_manager.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/package_plugin_manager.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/plugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/plugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/plugin_activator.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/plugin_activator.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/plugin_event.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/plugin_event.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/plugin_extension_registry.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/plugin_extension_registry.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/plugin_manager.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/plugin_manager.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/provider_extension_registry.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/provider_extension_registry.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/safeweakref.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/safeweakref.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/service.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/service.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/service_offer.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/service_offer.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/service_registry.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/service_registry.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/unknown_extension.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/unknown_extension.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/unknown_extension_point.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/unknown_extension_point.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/version.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/__pycache__/version.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/api.py
/usr/lib/python3.12/site-packages/envisage/application.py
/usr/lib/python3.12/site-packages/envisage/application_event.py
/usr/lib/python3.12/site-packages/envisage/composite_plugin_manager.py
/usr/lib/python3.12/site-packages/envisage/core_plugin.py
/usr/lib/python3.12/site-packages/envisage/egg_basket_plugin_manager.py
/usr/lib/python3.12/site-packages/envisage/egg_plugin_manager.py
/usr/lib/python3.12/site-packages/envisage/egg_utils.py
/usr/lib/python3.12/site-packages/envisage/examples
/usr/lib/python3.12/site-packages/envisage/examples/__init__.py
/usr/lib/python3.12/site-packages/envisage/examples/__pycache__
/usr/lib/python3.12/site-packages/envisage/examples/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/__pycache__/_demo.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/__pycache__/_demo.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/__pycache__/_etsdemo_info.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/__pycache__/_etsdemo_info.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/_demo.py
/usr/lib/python3.12/site-packages/envisage/examples/_etsdemo_info.py
/usr/lib/python3.12/site-packages/envisage/examples/demo
/usr/lib/python3.12/site-packages/envisage/examples/demo/GUI_Application
/usr/lib/python3.12/site-packages/envisage/examples/demo/GUI_Application/__pycache__
/usr/lib/python3.12/site-packages/envisage/examples/demo/GUI_Application/__pycache__/traitsui_gui_app.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/GUI_Application/__pycache__/traitsui_gui_app.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/GUI_Application/traitsui_gui_app.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/Hello_World
/usr/lib/python3.12/site-packages/envisage/examples/demo/Hello_World/__pycache__
/usr/lib/python3.12/site-packages/envisage/examples/demo/Hello_World/__pycache__/hello_world.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/Hello_World/__pycache__/hello_world.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/Hello_World/hello_world.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/__pycache__
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/__pycache__/run.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/__pycache__/run.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/__init__.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/__pycache__
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/__init__.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/__pycache__
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/__pycache__/api.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/__pycache__/api.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/__pycache__/i_message.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/__pycache__/i_message.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/__pycache__/i_motd.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/__pycache__/i_motd.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/__pycache__/message.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/__pycache__/message.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/__pycache__/motd.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/__pycache__/motd.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/__pycache__/motd_plugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/__pycache__/motd_plugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/api.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/i_message.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/i_motd.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/message.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/motd.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/motd_plugin.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/software_quotes
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/software_quotes/__init__.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/software_quotes/__pycache__
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/software_quotes/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/software_quotes/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/software_quotes/__pycache__/messages.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/software_quotes/__pycache__/messages.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/software_quotes/__pycache__/software_quotes_plugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/software_quotes/__pycache__/software_quotes_plugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/software_quotes/messages.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/acme/motd/software_quotes/software_quotes_plugin.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/MOTD/run.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/__pycache__
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/__pycache__/run_attractor.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/__pycache__/run_attractor.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/__init__.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/__pycache__
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/__pycache__/attractors_application.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/__pycache__/attractors_application.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/__pycache__/attractors_plugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/__pycache__/attractors_plugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/__pycache__/attractors_preferences.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/__pycache__/attractors_preferences.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/__pycache__/model_config_pane.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/__pycache__/model_config_pane.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/__pycache__/model_help_pane.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/__pycache__/model_help_pane.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/__pycache__/plot_2d_pane.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/__pycache__/plot_2d_pane.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/__pycache__/plot_3d_pane.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/__pycache__/plot_3d_pane.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/__pycache__/visualize_2d_task.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/__pycache__/visualize_2d_task.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/__pycache__/visualize_3d_task.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/__pycache__/visualize_3d_task.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/attractors_application.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/attractors_plugin.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/attractors_preferences.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/help
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/help/henon.html
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/help/images
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/help/images/henon1.png
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/help/images/lorenz1.png
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/help/images/lorenz2.png
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/help/images/lorenz3.png
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/help/images/rossler1.png
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/help/images/rossler2.png
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/help/images/rossler3.png
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/help/lorenz.html
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/help/rossler.html
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/model
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/model/__init__.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/model/__pycache__
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/model/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/model/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/model/__pycache__/henon.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/model/__pycache__/henon.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/model/__pycache__/i_model_2d.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/model/__pycache__/i_model_2d.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/model/__pycache__/i_model_3d.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/model/__pycache__/i_model_3d.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/model/__pycache__/i_plottable_2d.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/model/__pycache__/i_plottable_2d.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/model/__pycache__/lorenz.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/model/__pycache__/lorenz.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/model/__pycache__/rossler.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/model/__pycache__/rossler.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/model/henon.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/model/i_model_2d.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/model/i_model_3d.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/model/i_plottable_2d.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/model/lorenz.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/model/rossler.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/model_config_pane.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/model_help_pane.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/plot_2d_pane.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/plot_3d_pane.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/preferences.ini
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/visualize_2d_task.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/attractors/visualize_3d_task.py
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/index.rst
/usr/lib/python3.12/site-packages/envisage/examples/demo/plugins/tasks/run_attractor.py
/usr/lib/python3.12/site-packages/envisage/examples/tests
/usr/lib/python3.12/site-packages/envisage/examples/tests/__init__.py
/usr/lib/python3.12/site-packages/envisage/examples/tests/__pycache__
/usr/lib/python3.12/site-packages/envisage/examples/tests/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/tests/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/tests/__pycache__/test__demo.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/tests/__pycache__/test__demo.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/tests/__pycache__/test_etsdemo_info.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/examples/tests/__pycache__/test_etsdemo_info.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/examples/tests/test__demo.py
/usr/lib/python3.12/site-packages/envisage/examples/tests/test_etsdemo_info.py
/usr/lib/python3.12/site-packages/envisage/extension_point.py
/usr/lib/python3.12/site-packages/envisage/extension_point_binding.py
/usr/lib/python3.12/site-packages/envisage/extension_point_changed_event.py
/usr/lib/python3.12/site-packages/envisage/extension_provider.py
/usr/lib/python3.12/site-packages/envisage/extension_registry.py
/usr/lib/python3.12/site-packages/envisage/i_application.py
/usr/lib/python3.12/site-packages/envisage/i_extension_point.py
/usr/lib/python3.12/site-packages/envisage/i_extension_point_user.py
/usr/lib/python3.12/site-packages/envisage/i_extension_provider.py
/usr/lib/python3.12/site-packages/envisage/i_extension_registry.py
/usr/lib/python3.12/site-packages/envisage/i_import_manager.py
/usr/lib/python3.12/site-packages/envisage/i_plugin.py
/usr/lib/python3.12/site-packages/envisage/i_plugin_activator.py
/usr/lib/python3.12/site-packages/envisage/i_plugin_manager.py
/usr/lib/python3.12/site-packages/envisage/i_provider_extension_registry.py
/usr/lib/python3.12/site-packages/envisage/i_service_registry.py
/usr/lib/python3.12/site-packages/envisage/i_service_user.py
/usr/lib/python3.12/site-packages/envisage/ids.py
/usr/lib/python3.12/site-packages/envisage/import_manager.py
/usr/lib/python3.12/site-packages/envisage/package_plugin_manager.py
/usr/lib/python3.12/site-packages/envisage/plugin.py
/usr/lib/python3.12/site-packages/envisage/plugin_activator.py
/usr/lib/python3.12/site-packages/envisage/plugin_event.py
/usr/lib/python3.12/site-packages/envisage/plugin_extension_registry.py
/usr/lib/python3.12/site-packages/envisage/plugin_manager.py
/usr/lib/python3.12/site-packages/envisage/plugins
/usr/lib/python3.12/site-packages/envisage/plugins/__init__.py
/usr/lib/python3.12/site-packages/envisage/plugins/__pycache__
/usr/lib/python3.12/site-packages/envisage/plugins/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/event_manager
/usr/lib/python3.12/site-packages/envisage/plugins/event_manager/__init__.py
/usr/lib/python3.12/site-packages/envisage/plugins/event_manager/__pycache__
/usr/lib/python3.12/site-packages/envisage/plugins/event_manager/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/event_manager/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/event_manager/__pycache__/api.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/event_manager/__pycache__/api.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/event_manager/__pycache__/plugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/event_manager/__pycache__/plugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/event_manager/api.py
/usr/lib/python3.12/site-packages/envisage/plugins/event_manager/plugin.py
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/__init__.py
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/__pycache__
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/__pycache__/actions.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/__pycache__/actions.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/__pycache__/api.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/__pycache__/api.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/__pycache__/heartbeat.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/__pycache__/heartbeat.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/__pycache__/internal_ipkernel.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/__pycache__/internal_ipkernel.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/__pycache__/ipython_kernel_plugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/__pycache__/ipython_kernel_plugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/__pycache__/ipython_kernel_ui_plugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/__pycache__/ipython_kernel_ui_plugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/__pycache__/kernelapp.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/__pycache__/kernelapp.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/actions.py
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/api.py
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/heartbeat.py
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/internal_ipkernel.py
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/ipython_kernel_plugin.py
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/ipython_kernel_ui_plugin.py
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/kernelapp.py
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/tests
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/tests/__init__.py
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/tests/__pycache__
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/tests/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/tests/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/tests/__pycache__/test_internal_ipkernel.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/tests/__pycache__/test_internal_ipkernel.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/tests/__pycache__/test_ipython_kernel_plugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/tests/__pycache__/test_ipython_kernel_plugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/tests/test_internal_ipkernel.py
/usr/lib/python3.12/site-packages/envisage/plugins/ipython_kernel/tests/test_ipython_kernel_plugin.py
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/__init__.py
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/__pycache__
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/__pycache__/api.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/__pycache__/api.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/__pycache__/i_python_shell.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/__pycache__/i_python_shell.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/__pycache__/python_shell_plugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/__pycache__/python_shell_plugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/api.py
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/i_python_shell.py
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/python_shell_plugin.py
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/view
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/view/__init__.py
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/view/__pycache__
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/view/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/view/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/view/__pycache__/api.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/view/__pycache__/api.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/view/__pycache__/namespace_view.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/view/__pycache__/namespace_view.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/view/__pycache__/python_shell_view.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/view/__pycache__/python_shell_view.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/view/api.py
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/view/namespace_view.py
/usr/lib/python3.12/site-packages/envisage/plugins/python_shell/view/python_shell_view.py
/usr/lib/python3.12/site-packages/envisage/plugins/tasks
/usr/lib/python3.12/site-packages/envisage/plugins/tasks/__init__.py
/usr/lib/python3.12/site-packages/envisage/plugins/tasks/__pycache__
/usr/lib/python3.12/site-packages/envisage/plugins/tasks/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/tasks/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/tasks/__pycache__/python_shell_plugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/tasks/__pycache__/python_shell_plugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/tasks/python_shell_plugin.py
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/__init__.py
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/__pycache__
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/__pycache__/actions.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/__pycache__/actions.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/__pycache__/api.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/__pycache__/api.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/__pycache__/text_editor_action_set.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/__pycache__/text_editor_action_set.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/__pycache__/text_editor_plugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/__pycache__/text_editor_plugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/actions.py
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/api.py
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/editor
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/editor/__init__.py
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/editor/__pycache__
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/editor/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/editor/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/editor/__pycache__/text_editor.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/editor/__pycache__/text_editor.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/editor/__pycache__/text_editor_handler.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/editor/__pycache__/text_editor_handler.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/editor/text_editor.py
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/editor/text_editor_handler.py
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/text_editor_action_set.py
/usr/lib/python3.12/site-packages/envisage/plugins/text_editor/text_editor_plugin.py
/usr/lib/python3.12/site-packages/envisage/provider_extension_registry.py
/usr/lib/python3.12/site-packages/envisage/resource
/usr/lib/python3.12/site-packages/envisage/resource/__init__.py
/usr/lib/python3.12/site-packages/envisage/resource/__pycache__
/usr/lib/python3.12/site-packages/envisage/resource/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/resource/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/resource/__pycache__/api.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/resource/__pycache__/api.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/resource/__pycache__/file_resource_protocol.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/resource/__pycache__/file_resource_protocol.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/resource/__pycache__/http_resource_protocol.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/resource/__pycache__/http_resource_protocol.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/resource/__pycache__/i_resource_manager.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/resource/__pycache__/i_resource_manager.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/resource/__pycache__/i_resource_protocol.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/resource/__pycache__/i_resource_protocol.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/resource/__pycache__/no_such_resource_error.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/resource/__pycache__/no_such_resource_error.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/resource/__pycache__/package_resource_protocol.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/resource/__pycache__/package_resource_protocol.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/resource/__pycache__/resource_manager.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/resource/__pycache__/resource_manager.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/resource/api.py
/usr/lib/python3.12/site-packages/envisage/resource/file_resource_protocol.py
/usr/lib/python3.12/site-packages/envisage/resource/http_resource_protocol.py
/usr/lib/python3.12/site-packages/envisage/resource/i_resource_manager.py
/usr/lib/python3.12/site-packages/envisage/resource/i_resource_protocol.py
/usr/lib/python3.12/site-packages/envisage/resource/no_such_resource_error.py
/usr/lib/python3.12/site-packages/envisage/resource/package_resource_protocol.py
/usr/lib/python3.12/site-packages/envisage/resource/resource_manager.py
/usr/lib/python3.12/site-packages/envisage/resource/tests
/usr/lib/python3.12/site-packages/envisage/resource/tests/__init__.py
/usr/lib/python3.12/site-packages/envisage/resource/tests/__pycache__
/usr/lib/python3.12/site-packages/envisage/resource/tests/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/resource/tests/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/resource/tests/__pycache__/test_resource_manager.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/resource/tests/__pycache__/test_resource_manager.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/resource/tests/test_resource_manager.py
/usr/lib/python3.12/site-packages/envisage/safeweakref.py
/usr/lib/python3.12/site-packages/envisage/service.py
/usr/lib/python3.12/site-packages/envisage/service_offer.py
/usr/lib/python3.12/site-packages/envisage/service_registry.py
/usr/lib/python3.12/site-packages/envisage/tests
/usr/lib/python3.12/site-packages/envisage/tests/__init__.py
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/ets_config_patcher.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/ets_config_patcher.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/event_tracker.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/event_tracker.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/foo.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/foo.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/i_foo.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/i_foo.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/mutable_extension_registry.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/mutable_extension_registry.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_application.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_application.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_composite_plugin_manager.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_composite_plugin_manager.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_core_plugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_core_plugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_egg_based.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_egg_based.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_egg_basket_plugin_manager.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_egg_basket_plugin_manager.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_egg_plugin_manager.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_egg_plugin_manager.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_extension_point.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_extension_point.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_extension_point_binding.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_extension_point_binding.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_extension_point_changed.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_extension_point_changed.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_extension_registry.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_extension_registry.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_extension_registry_mixin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_extension_registry_mixin.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_ids.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_ids.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_import_manager.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_import_manager.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_package_plugin_manager.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_package_plugin_manager.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_plugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_plugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_plugin_manager.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_plugin_manager.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_provider_extension_registry.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_provider_extension_registry.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_safeweakref.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_safeweakref.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_service.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_service.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_service_registry.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_service_registry.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_slice.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_slice.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_version.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_version.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_workbench.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/__pycache__/test_workbench.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/bad_eggs
/usr/lib/python3.12/site-packages/envisage/tests/bad_eggs/README.txt
/usr/lib/python3.12/site-packages/envisage/tests/bad_eggs/acme.bad
/usr/lib/python3.12/site-packages/envisage/tests/bad_eggs/acme.bad/__pycache__
/usr/lib/python3.12/site-packages/envisage/tests/bad_eggs/acme.bad/__pycache__/setup.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/bad_eggs/acme.bad/__pycache__/setup.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/bad_eggs/acme.bad/acme
/usr/lib/python3.12/site-packages/envisage/tests/bad_eggs/acme.bad/acme/__init__.py
/usr/lib/python3.12/site-packages/envisage/tests/bad_eggs/acme.bad/acme/__pycache__
/usr/lib/python3.12/site-packages/envisage/tests/bad_eggs/acme.bad/acme/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/bad_eggs/acme.bad/acme/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/bad_eggs/acme.bad/acme/bad
/usr/lib/python3.12/site-packages/envisage/tests/bad_eggs/acme.bad/acme/bad/__init__.py
/usr/lib/python3.12/site-packages/envisage/tests/bad_eggs/acme.bad/acme/bad/__pycache__
/usr/lib/python3.12/site-packages/envisage/tests/bad_eggs/acme.bad/acme/bad/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/bad_eggs/acme.bad/acme/bad/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/bad_eggs/acme.bad/acme/bad/__pycache__/bad_plugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/bad_eggs/acme.bad/acme/bad/__pycache__/bad_plugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/bad_eggs/acme.bad/acme/bad/bad_plugin.py
/usr/lib/python3.12/site-packages/envisage/tests/bad_eggs/acme.bad/setup.py
/usr/lib/python3.12/site-packages/envisage/tests/eggs
/usr/lib/python3.12/site-packages/envisage/tests/eggs/README.txt
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.bar
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.bar/__pycache__
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.bar/__pycache__/setup.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.bar/__pycache__/setup.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.bar/acme
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.bar/acme/__init__.py
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.bar/acme/__pycache__
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.bar/acme/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.bar/acme/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.bar/acme/bar
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.bar/acme/bar/__init__.py
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.bar/acme/bar/__pycache__
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.bar/acme/bar/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.bar/acme/bar/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.bar/acme/bar/__pycache__/bar_plugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.bar/acme/bar/__pycache__/bar_plugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.bar/acme/bar/bar_plugin.py
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.bar/setup.py
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.baz
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.baz/__pycache__
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.baz/__pycache__/setup.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.baz/__pycache__/setup.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.baz/acme
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.baz/acme/__init__.py
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.baz/acme/__pycache__
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.baz/acme/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.baz/acme/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.baz/acme/baz
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.baz/acme/baz/__init__.py
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.baz/acme/baz/__pycache__
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.baz/acme/baz/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.baz/acme/baz/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.baz/acme/baz/__pycache__/baz_plugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.baz/acme/baz/__pycache__/baz_plugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.baz/acme/baz/baz_plugin.py
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.baz/setup.py
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.foo
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.foo/__pycache__
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.foo/__pycache__/setup.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.foo/__pycache__/setup.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.foo/acme
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.foo/acme/__init__.py
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.foo/acme/__pycache__
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.foo/acme/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.foo/acme/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.foo/acme/foo
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.foo/acme/foo/__init__.py
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.foo/acme/foo/__pycache__
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.foo/acme/foo/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.foo/acme/foo/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.foo/acme/foo/__pycache__/foo_plugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.foo/acme/foo/__pycache__/foo_plugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.foo/acme/foo/foo_plugin.py
/usr/lib/python3.12/site-packages/envisage/tests/eggs/acme.foo/setup.py
/usr/lib/python3.12/site-packages/envisage/tests/ets_config_patcher.py
/usr/lib/python3.12/site-packages/envisage/tests/event_tracker.py
/usr/lib/python3.12/site-packages/envisage/tests/foo.py
/usr/lib/python3.12/site-packages/envisage/tests/i_foo.py
/usr/lib/python3.12/site-packages/envisage/tests/mutable_extension_registry.py
/usr/lib/python3.12/site-packages/envisage/tests/plugins
/usr/lib/python3.12/site-packages/envisage/tests/plugins/banana
/usr/lib/python3.12/site-packages/envisage/tests/plugins/banana/__init__.py
/usr/lib/python3.12/site-packages/envisage/tests/plugins/banana/__pycache__
/usr/lib/python3.12/site-packages/envisage/tests/plugins/banana/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/plugins/banana/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/plugins/banana/__pycache__/banana_plugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/plugins/banana/__pycache__/banana_plugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/plugins/banana/__pycache__/plugins.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/plugins/banana/__pycache__/plugins.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/plugins/banana/banana_plugin.py
/usr/lib/python3.12/site-packages/envisage/tests/plugins/banana/plugins.py
/usr/lib/python3.12/site-packages/envisage/tests/plugins/orange
/usr/lib/python3.12/site-packages/envisage/tests/plugins/orange/__init__.py
/usr/lib/python3.12/site-packages/envisage/tests/plugins/orange/__pycache__
/usr/lib/python3.12/site-packages/envisage/tests/plugins/orange/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/plugins/orange/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/plugins/orange/__pycache__/orange_plugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/plugins/orange/__pycache__/orange_plugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/plugins/orange/__pycache__/plugins.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/plugins/orange/__pycache__/plugins.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/plugins/orange/orange_plugin.py
/usr/lib/python3.12/site-packages/envisage/tests/plugins/orange/plugins.py
/usr/lib/python3.12/site-packages/envisage/tests/plugins/pear
/usr/lib/python3.12/site-packages/envisage/tests/plugins/pear/__init__.py
/usr/lib/python3.12/site-packages/envisage/tests/plugins/pear/__pycache__
/usr/lib/python3.12/site-packages/envisage/tests/plugins/pear/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/plugins/pear/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/plugins/pear/__pycache__/pear_plugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/tests/plugins/pear/__pycache__/pear_plugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/tests/plugins/pear/pear_plugin.py
/usr/lib/python3.12/site-packages/envisage/tests/preferences.ini
/usr/lib/python3.12/site-packages/envisage/tests/test_application.py
/usr/lib/python3.12/site-packages/envisage/tests/test_composite_plugin_manager.py
/usr/lib/python3.12/site-packages/envisage/tests/test_core_plugin.py
/usr/lib/python3.12/site-packages/envisage/tests/test_egg_based.py
/usr/lib/python3.12/site-packages/envisage/tests/test_egg_basket_plugin_manager.py
/usr/lib/python3.12/site-packages/envisage/tests/test_egg_plugin_manager.py
/usr/lib/python3.12/site-packages/envisage/tests/test_extension_point.py
/usr/lib/python3.12/site-packages/envisage/tests/test_extension_point_binding.py
/usr/lib/python3.12/site-packages/envisage/tests/test_extension_point_changed.py
/usr/lib/python3.12/site-packages/envisage/tests/test_extension_registry.py
/usr/lib/python3.12/site-packages/envisage/tests/test_extension_registry_mixin.py
/usr/lib/python3.12/site-packages/envisage/tests/test_ids.py
/usr/lib/python3.12/site-packages/envisage/tests/test_import_manager.py
/usr/lib/python3.12/site-packages/envisage/tests/test_package_plugin_manager.py
/usr/lib/python3.12/site-packages/envisage/tests/test_plugin.py
/usr/lib/python3.12/site-packages/envisage/tests/test_plugin_manager.py
/usr/lib/python3.12/site-packages/envisage/tests/test_provider_extension_registry.py
/usr/lib/python3.12/site-packages/envisage/tests/test_safeweakref.py
/usr/lib/python3.12/site-packages/envisage/tests/test_service.py
/usr/lib/python3.12/site-packages/envisage/tests/test_service_registry.py
/usr/lib/python3.12/site-packages/envisage/tests/test_slice.py
/usr/lib/python3.12/site-packages/envisage/tests/test_version.py
/usr/lib/python3.12/site-packages/envisage/tests/test_workbench.py
/usr/lib/python3.12/site-packages/envisage/ui
/usr/lib/python3.12/site-packages/envisage/ui/__init__.py
/usr/lib/python3.12/site-packages/envisage/ui/__pycache__
/usr/lib/python3.12/site-packages/envisage/ui/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/__pycache__/gui_application.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/__pycache__/gui_application.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action
/usr/lib/python3.12/site-packages/envisage/ui/action/__init__.py
/usr/lib/python3.12/site-packages/envisage/ui/action/__pycache__
/usr/lib/python3.12/site-packages/envisage/ui/action/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/__pycache__/abstract_action_manager_builder.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/__pycache__/abstract_action_manager_builder.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/__pycache__/action.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/__pycache__/action.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/__pycache__/action_set.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/__pycache__/action_set.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/__pycache__/action_set_manager.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/__pycache__/action_set_manager.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/__pycache__/api.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/__pycache__/api.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/__pycache__/group.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/__pycache__/group.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/__pycache__/i_action_manager_builder.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/__pycache__/i_action_manager_builder.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/__pycache__/i_action_set.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/__pycache__/i_action_set.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/__pycache__/location.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/__pycache__/location.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/__pycache__/menu.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/__pycache__/menu.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/__pycache__/tool_bar.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/__pycache__/tool_bar.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/abstract_action_manager_builder.py
/usr/lib/python3.12/site-packages/envisage/ui/action/action.py
/usr/lib/python3.12/site-packages/envisage/ui/action/action_set.py
/usr/lib/python3.12/site-packages/envisage/ui/action/action_set_manager.py
/usr/lib/python3.12/site-packages/envisage/ui/action/api.py
/usr/lib/python3.12/site-packages/envisage/ui/action/group.py
/usr/lib/python3.12/site-packages/envisage/ui/action/i_action_manager_builder.py
/usr/lib/python3.12/site-packages/envisage/ui/action/i_action_set.py
/usr/lib/python3.12/site-packages/envisage/ui/action/location.py
/usr/lib/python3.12/site-packages/envisage/ui/action/menu.py
/usr/lib/python3.12/site-packages/envisage/ui/action/tests
/usr/lib/python3.12/site-packages/envisage/ui/action/tests/__init__.py
/usr/lib/python3.12/site-packages/envisage/ui/action/tests/__pycache__
/usr/lib/python3.12/site-packages/envisage/ui/action/tests/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/tests/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/tests/__pycache__/dummy_action_manager_builder.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/tests/__pycache__/dummy_action_manager_builder.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/tests/__pycache__/test_action_manager_builder.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/tests/__pycache__/test_action_manager_builder.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/action/tests/dummy_action_manager_builder.py
/usr/lib/python3.12/site-packages/envisage/ui/action/tests/test_action_manager_builder.py
/usr/lib/python3.12/site-packages/envisage/ui/action/tool_bar.py
/usr/lib/python3.12/site-packages/envisage/ui/gui_application.py
/usr/lib/python3.12/site-packages/envisage/ui/tasks
/usr/lib/python3.12/site-packages/envisage/ui/tasks/__init__.py
/usr/lib/python3.12/site-packages/envisage/ui/tasks/__pycache__
/usr/lib/python3.12/site-packages/envisage/ui/tasks/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/__pycache__/api.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/__pycache__/api.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/__pycache__/preferences_category.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/__pycache__/preferences_category.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/__pycache__/preferences_dialog.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/__pycache__/preferences_dialog.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/__pycache__/preferences_pane.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/__pycache__/preferences_pane.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/__pycache__/task_extension.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/__pycache__/task_extension.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/__pycache__/task_factory.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/__pycache__/task_factory.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/__pycache__/task_window.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/__pycache__/task_window.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/__pycache__/task_window_event.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/__pycache__/task_window_event.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/__pycache__/tasks_application.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/__pycache__/tasks_application.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/__pycache__/tasks_plugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/__pycache__/tasks_plugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/action
/usr/lib/python3.12/site-packages/envisage/ui/tasks/action/__init__.py
/usr/lib/python3.12/site-packages/envisage/ui/tasks/action/__pycache__
/usr/lib/python3.12/site-packages/envisage/ui/tasks/action/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/action/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/action/__pycache__/api.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/action/__pycache__/api.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/action/__pycache__/exit_action.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/action/__pycache__/exit_action.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/action/__pycache__/preferences_action.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/action/__pycache__/preferences_action.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/action/__pycache__/task_window_launch_group.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/action/__pycache__/task_window_launch_group.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/action/__pycache__/task_window_toggle_group.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/action/__pycache__/task_window_toggle_group.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/action/api.py
/usr/lib/python3.12/site-packages/envisage/ui/tasks/action/exit_action.py
/usr/lib/python3.12/site-packages/envisage/ui/tasks/action/preferences_action.py
/usr/lib/python3.12/site-packages/envisage/ui/tasks/action/task_window_launch_group.py
/usr/lib/python3.12/site-packages/envisage/ui/tasks/action/task_window_toggle_group.py
/usr/lib/python3.12/site-packages/envisage/ui/tasks/api.py
/usr/lib/python3.12/site-packages/envisage/ui/tasks/preferences_category.py
/usr/lib/python3.12/site-packages/envisage/ui/tasks/preferences_dialog.py
/usr/lib/python3.12/site-packages/envisage/ui/tasks/preferences_pane.py
/usr/lib/python3.12/site-packages/envisage/ui/tasks/task_extension.py
/usr/lib/python3.12/site-packages/envisage/ui/tasks/task_factory.py
/usr/lib/python3.12/site-packages/envisage/ui/tasks/task_window.py
/usr/lib/python3.12/site-packages/envisage/ui/tasks/task_window_event.py
/usr/lib/python3.12/site-packages/envisage/ui/tasks/tasks_application.py
/usr/lib/python3.12/site-packages/envisage/ui/tasks/tasks_plugin.py
/usr/lib/python3.12/site-packages/envisage/ui/tasks/tests
/usr/lib/python3.12/site-packages/envisage/ui/tasks/tests/__init__.py
/usr/lib/python3.12/site-packages/envisage/ui/tasks/tests/__pycache__
/usr/lib/python3.12/site-packages/envisage/ui/tasks/tests/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/tests/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/tests/__pycache__/test_tasks_application.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/tests/__pycache__/test_tasks_application.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/tasks/tests/data
/usr/lib/python3.12/site-packages/envisage/ui/tasks/tests/data/application_memento_v2.pkl
/usr/lib/python3.12/site-packages/envisage/ui/tasks/tests/data/application_memento_v3.pkl
/usr/lib/python3.12/site-packages/envisage/ui/tasks/tests/test_tasks_application.py
/usr/lib/python3.12/site-packages/envisage/ui/workbench
/usr/lib/python3.12/site-packages/envisage/ui/workbench/__init__.py
/usr/lib/python3.12/site-packages/envisage/ui/workbench/__pycache__
/usr/lib/python3.12/site-packages/envisage/ui/workbench/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/__pycache__/api.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/__pycache__/api.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/__pycache__/default_action_set.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/__pycache__/default_action_set.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/__pycache__/workbench.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/__pycache__/workbench.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/__pycache__/workbench_action_manager_builder.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/__pycache__/workbench_action_manager_builder.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/__pycache__/workbench_action_set.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/__pycache__/workbench_action_set.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/__pycache__/workbench_application.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/__pycache__/workbench_application.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/__pycache__/workbench_editor_manager.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/__pycache__/workbench_editor_manager.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/__pycache__/workbench_plugin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/__pycache__/workbench_plugin.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/__pycache__/workbench_preferences.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/__pycache__/workbench_preferences.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/__pycache__/workbench_preferences_page.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/__pycache__/workbench_preferences_page.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/__pycache__/workbench_window.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/__pycache__/workbench_window.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/action
/usr/lib/python3.12/site-packages/envisage/ui/workbench/action/__init__.py
/usr/lib/python3.12/site-packages/envisage/ui/workbench/action/__pycache__
/usr/lib/python3.12/site-packages/envisage/ui/workbench/action/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/action/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/action/__pycache__/about_action.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/action/__pycache__/about_action.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/action/__pycache__/api.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/action/__pycache__/api.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/action/__pycache__/edit_preferences_action.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/action/__pycache__/edit_preferences_action.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/action/__pycache__/exit_action.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/action/__pycache__/exit_action.cpython-312.pyc
/usr/lib/python3.12/site-packages/envisage/ui/workbench/action/about_action.py
/usr/lib/python3.12/site-packages/envisage/ui/workbench/action/api.py
/usr/lib/python3.12/site-packages/envisage/ui/workbench/action/edit_preferences_action.py
/usr/lib/python3.12/site-packages/envisage/ui/workbench/action/exit_action.py
/usr/lib/python3.12/site-packages/envisage/ui/workbench/action/images
/usr/lib/python3.12/site-packages/envisage/ui/workbench/action/images/exit.png
/usr/lib/python3.12/site-packages/envisage/ui/workbench/action/images/image_LICENSE.txt
/usr/lib/python3.12/site-packages/envisage/ui/workbench/action/images/preferences.png
/usr/lib/python3.12/site-packages/envisage/ui/workbench/api.py
/usr/lib/python3.12/site-packages/envisage/ui/workbench/default_action_set.py
/usr/lib/python3.12/site-packages/envisage/ui/workbench/images
/usr/lib/python3.12/site-packages/envisage/ui/workbench/images/about.png
/usr/lib/python3.12/site-packages/envisage/ui/workbench/images/application.ico
/usr/lib/python3.12/site-packages/envisage/ui/workbench/images/image_LICENSE.txt
/usr/lib/python3.12/site-packages/envisage/ui/workbench/preferences.ini
/usr/lib/python3.12/site-packages/envisage/ui/workbench/workbench.py
/usr/lib/python3.12/site-packages/envisage/ui/workbench/workbench_action_manager_builder.py
/usr/lib/python3.12/site-packages/envisage/ui/workbench/workbench_action_set.py
/usr/lib/python3.12/site-packages/envisage/ui/workbench/workbench_application.py
/usr/lib/python3.12/site-packages/envisage/ui/workbench/workbench_editor_manager.py
/usr/lib/python3.12/site-packages/envisage/ui/workbench/workbench_plugin.py
/usr/lib/python3.12/site-packages/envisage/ui/workbench/workbench_preferences.py
/usr/lib/python3.12/site-packages/envisage/ui/workbench/workbench_preferences_page.py
/usr/lib/python3.12/site-packages/envisage/ui/workbench/workbench_window.py
/usr/lib/python3.12/site-packages/envisage/unknown_extension.py
/usr/lib/python3.12/site-packages/envisage/unknown_extension_point.py
/usr/lib/python3.12/site-packages/envisage/version.py
/usr/share/doc/packages/python312-envisage
/usr/share/doc/packages/python312-envisage/README.rst
/usr/share/licenses/python312-envisage
/usr/share/licenses/python312-envisage/LICENSE.txt
/usr/share/licenses/python312-envisage/image_LICENSE.txt
/usr/share/licenses/python312-envisage/image_LICENSE_CP.txt


Generated by rpm2html 1.8.1

Fabrice Bellet, Wed May 1 23:23:10 2024