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

python313-envisage-7.0.4-1.2 RPM for noarch

From OpenSuSE Tumbleweed for noarch

Name: python313-envisage Distribution: openSUSE Tumbleweed
Version: 7.0.4 Vendor: openSUSE
Release: 1.2 Build date: Sun May 3 20:23:50 2026
Group: Unspecified Build host: reproducible
Size: 1424485 Source RPM: python-envisage-7.0.4-1.2.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 LicenseRef-SUSE-Public-Domain

Changelog

* Sun May 03 2026 Dirk Müller <dmueller@suse.com>
  - update to 7.0.4:
    * Fix a situation where preferences were incorrectly written by
      the PreferencesPane before changes were approved.
    * Add a name attribute to the EventManagerPlugin.
    * Update copyright header end years for 2024, 2025.
    * Add dependendabot config for GitHub Actions; bump individual
      actions to their latest versions.
    * Remove Slack notifications, which were using an outdated and
      unmaintained GitHub Action.
    * Require apptools 5.3 or later and Python 3.8 or later.
    * Update black to version 24.3.0 to address a ReDoS
      vulnerability in earlier versions.
    * Remove skip decorator on some PySide6-related tests.
    * Remove the sphinx.ext.githubpages extension.
    * Fix the GitHub Actions workflow for automated documentation
      updates on releases.
    * Fix test-ordering issues with egg-based tests that modify
      pkg_resources global state.
    * Reorganise the gh-pages documentation. The main gh-pages page
      (https://docs.enthought.com/envisage) now matches the
      contents of the GitHub main branch, while subdirectories
      (e.g., https://docs.enthought.com/envisage/7.0) provide
      documentation for released versions. A 'latest' symlink is in
      place, so https://docs.enthought.com/envisage/latest will
      bring up the documentation for the latest release.
    * Add GitHub Actions workflows to automate documentation
      updates. The main documentation is updated on every push to
      main, while the release documentation is updated on each
      GitHub release creation.
    * Fix the documentation build for Read the Docs.
    * Fix example code that was importing Font and Color from
      Traits instead of TraitsUI.
    * Mark Dickinson
    * Chengyu Liu
    * Corran Webster
    * There's a new unbind_extension_point function that reverses
      the effects of bind_extension_point. This can be useful for
      clean teardown.
    * All id string constants that were previously available from
      envisage.ids are now also exported in envisage.api. Users are
      encouraged to import everything they need from envisage.api,
      and to open an issue if anything they need is not exported in
      envisage.api.
    * When exiting a TasksApplication, the plugins are now stopped
      after exiting the event loop. Previously they were stopped
      while the event loop was still running, causing some
      lifecycle issues.
    * The extension_registry argument to bind_extension_point is no
      longer optional, and ExtensionPointBinding will no longer
      look for an extension registry on the ExtensionPoint class.
    * Operations that used to raise SystemError now raise something
      more appropriate. In particular, the
      PluginManager.start_plugin and PluginManager.stop_plugin
      methods now raise ValueError rather than SystemError when
      given an invalid plugin id.
    * envisage.__version__ is no longer defined. If you need the
      Envisage version at runtime, use importlib.metadata to
      retrieve it.
    * Python 3.6 is no longer supported. All current versions of
      Python (3.7 through 3.11) are supported.
    * The repr of a Plugin instance now correctly uses the name of
      the plugin class.
    * The EggPluginManager, EggBasketPluginManager and
      PackagePluginManager are deprecated, and will be removed in
      Envisage 8.0.
    * The include and exclude traits on the PluginManager are
      deprecated, and will be removed in Envisage 8.0.
    * Plugins and machinery related to IPython have been removed.
      Specifically, the IPythonKernelPlugin and
      IPythonKernelUIPlugin plugins have been removed, along with
      supporting classes InternalIPKernel and IPKernelApp.
    * The ExtensionPoint.bind method has been removed.
    * The previously deprecated safeweakref.ref class has been
      removed.
    * Some legacy unmaintained examples have been removed.
    * The changelog is now included in the built documentation.
    * Old-style namespace packages used for testing have been
      replaced with normal non-namespace packages. This fixes some
      warnings from the latest setuptools.
    * The test suite now runs cleanly under pytest.
    * Tests that are skipped due to a PySide6 problem should now be
      run if the version of PySide6 is recent enough.
    * Package configuration now uses pyproject.toml in place of the
      old setup.py-based configuration.
    * Optional dependencies are no longer declared.
    * A new style-checking workflow has been added that runs black,
      isort and flake8 over the codebase, and new code is expected
      to comply with black and isort configurations.
    * A new documentation-build workflow has been added. The built
      documentation is uploaded as an artifact.
* Fri May 09 2025 Steve Kowalik <steven.kowalik@suse.com>
  - Switch to pyproject macros.
* 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

Files

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


Generated by rpm2html 1.8.1

Fabrice Bellet, Mon Aug 3 00:04:55 2026