Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: spyder | Distribution: openSUSE Tumbleweed |
Version: 6.0.1 | Vendor: openSUSE |
Release: 1.1 | Build date: Thu Sep 26 11:43:27 2024 |
Group: Development/Languages/Python | Build host: reproducible |
Size: 43521299 | Source RPM: spyder-6.0.1-1.1.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://www.spyder-ide.org/ | |
Summary: The Scientific Python Development Environment |
Spyder, the Scientific Python Development Environment, is an IDE for researchers, engineers and data analysts. It features a combination of the editing, analysis, debugging and profiling functionality of a development tool with the data exploration, interactive execution, deep inspection and visualization capabilities of an analysis package. Additionally, Spyder offers built-in integration with scientific libraries, including NumPy, SciPy, Pandas, IPython, QtConsole, Matplotlib, SymPy, and more, and can be extended further with full plugin support.
MIT
* Thu Sep 26 2024 Ben Greiner <code@bnavigator.de> - Update to 6.0.1 * Fix Spyder hanging at startup on Linux when started in a terminal in background mode. * Fix appeal/sponsor Spyder message being shown at every startup. * Avoid crashes at startup from faulty/outdated external plugins. * Fix errors related to unmaximazing panes and layout changes. * Sun Sep 08 2024 Ben Greiner <code@bnavigator.de> - Update to 6.0.0 [#]# New features * New installers for Windows, Linux and macOS based on Conda and Conda-forge. They come up with a more robust update process and are based on Python 3.11. * Add a Debugger pane to explore the stack frame of the current debugging session. * Add a button to the Debugger pane to pause the current code execution and enter the debugger afterwards. * Add submenu to the Consoles menu to start a new console for a specific Conda or Pyenv environment. * Add ability to refresh the open Variable Explorer viewers to reflect the current variable value. * Add initial support to automatically connect to remote servers through SSH and run code in them. This functionality can be found in the menu Consoles > New console in remote server. * Show plots generated in the Variable Explorer or its viewers in the Plots pane. * Show Matplotlib backend and Python environment information in the status bar. * Make kernel restarts be much faster for the current interpreter. * Add experimental support for Qt 6 and increase minimal required version to Qt 5.15. * Turn runfile, debugfile, runcell and related commands into IPython magics. [#]# Important fixes * Environment variables declared in ~/.bashrc or ~/.zhrc are detected and passed to the IPython console. * Support all real number dtypes in the dataframe viewer. * Respect Matplotlib user settings configured outside Spyder. * Increase DPI of Matplotlib plots so they look better in high resolution screens. * Allow to copy the absolute and relative paths of the current file to the tabs' context menu of the Editor. * Restore ability to load Hdf5 and Dicom files through the Variable Explorer (this was working in Spyder 4 and before). * Add ability to disable external plugins in Preferences > Plugins. * Use a simpler filesystem watcher in Projects to improve performance. [#]# UX/UI improvements * Make Spyder accept Chinese, Korean or Japanese input on Linux by adding fcitx-qt5 as a new dependency (in conda environments only). * The file switcher can browse and open files present in the current project ( in conda environments or if the fzf package is installed). * Improve how options are displayed and handled in several Variable Explorer viewers. * The interface font used by the entire application can be configured in Preferences > Appearance. * Files can be opened in the editor by pasting their path in the Working Directory toolbar. * Add a new button to the Variable Explorer to indicate when variables are being filtered. * Show intro message for panes that don't display content at startup. [#]# New, updated and removed plugins * Add a Switcher plugin for the files and symbols switcher. * Add a Debugger plugin to centralize all functionality related to debugging. * Add an External Terminal plugin to execute Python and Bash/Batch/PS1 files on a system terminal. * Generalize the Run plugin to support generic inputs and executors. This allows plugins to declare what kind of inputs (i.e. file, cell or selection) they can execute and how they will display the result. * Declare a proper API for the Projects plugin. * The Editor now uses the API introduced in Spyder 5. That was the last built-in plugin that needed to be migrated to it. * The Breakpoints plugin was removed and its functionality moved to the Debugger one. [#]# New API features * SpyderPluginV2.get_description must be a static method and SpyderPluginV2.get_icon a class or static method. This is necessary to display the list of available plugins in Preferences in a more user-friendly way (see PR PR 21101 for the details). * SpyderPlugin and SpyderPluginWidget are no longer exposed in the public API. They will be removed in Spyder 6.1. * All comboboxes must inherit from SpyderComboBox or related subclasses in spyder.api.widgets.comboboxes. Comboboxes that inherit directly from QComboBox won't follow Spyder's graphical style. * All menus must inherit from SpyderMenu in spyder.api.widgets.menus. * All dialog button boxes must inherit from SpyderDialogButtonBox in spyder.api.widgets.dialogs. * Helper classes were added to spyder.api.fonts to get and set the fonts used in Spyder in different widgets. * Helper classes were added to spyder.api.shortcuts to get and set keyboard shortcuts. * AsyncDispatcher was added to spyder.api.asyncdispatcher to run asyncio code in Spyder. Only Qt signals can be attached to asyncio future.add_done_callback calls to avoid segfaults. * ShellConnectStatusBarWidget was added to spyder.api.shellconnect.status to create status bar widgets connected to the current console. - Clean test deselection, we are currently not able to run any tests. * Thu Aug 29 2024 Ben Greiner <code@bnavigator.de> - Update to 5.5.6 [#]# Important fixes * Fix several erros related with panes tabification and in general when some plugins are disabled/missing. * Fix error on file dialogs extensions filter. * Fix micromamba usage on arm64 macOS installers. * Remove dependency on pkg_resources and make PyQtWebEngine optional. [#]# Issues Closed * Issue 22376 - Spyder 5.5.6 release (PR 22385 by @dalthviz) * Issue 22248 - On macOS "Save as..." always defaults to saving with ".R" extension rather than ".py" (PR 22270 by @mrclary) * Issue 22233 - Using miniconda env creates a bad CPU type error with macOS installer in M1 laptops (PR 22265 by @mrclary) * Issue 21545 - Use importlib.metadata when trying to get package version (PR 22244 by @hmaarrfk) [#]# Pull Requests Merged * PR 22385 - PR: Update dependencies for 5.5.6, by @dalthviz (22376) * PR 22372 - PR: Update the python-lsp-server subrepo, by @ccordoba12 * PR 22288 - PR: Fix several errors with missing plugins when setting a layout, by @ccordoba12 * PR 22270 - PR: Remove a non-ascii file extension from QFileDialog filter, by @mrclary (22248) * PR 22265 - PR: Use the correct micromamba for arm64 architecture on macOS (Installers), by @mrclary (22233) * PR 22244 - PR: Remove dependency on pkg_resources and use importlib-metadata instead, by @hmaarrfk (21545) * PR 22237 - PR: Fix failing tests due to Numpy 2.0 (Testing), by @ccordoba12 * PR 22199 - PR: Fix error when plugins required for tabification are unavailable (Layout), by @hmaarrfk * PR 22198 - PR: Backport of PR 22196 (Make QtWebEngine Optional), by @hmaarrfk * PR 21539 - PR: Update translations from Crowdin, by @spyder-bot * Thu Jul 11 2024 Ben Greiner <code@bnavigator.de> - Update to 5.5.5 * Fix to ensure compatibility with matplotlib 3.9.0. * Fix kernel start when connection file has spaces in its path. * Improve compatibility with PySide2. * Handle no output/error output when checking for updates on conda installations. * Fix installers update validation logic to choose installer executable name to download/use. * Mon Apr 15 2024 Ben Greiner <code@bnavigator.de> - Update to 5.5.4 * Update QtAwesome version constraint to >=1.3.1,<1.4.0 (icon fonts access issues). * Fix kernel start in conda envs with spaces in their directory paths. * Fix installers update (installers download URL handling). * Handle no output when trying to process git data. - Drop patches * spyder-pr21939-qtawesome1.3.patch * spyder-pr21942-pylint3.1.patch * Mon Apr 01 2024 Ben Greiner <code@bnavigator.de> - Bump pylsp * Mon Mar 18 2024 Ben Greiner <code@bnavigator.de> - Update to 5.5.3 * Fix critical error when starting IPython console kernels on macOS and Linux in conda environments. - Release 5.5.2 * Activate environment for consoles that run in the same environment as Spyder. * Fix IPython kernel hangs when using a different graphic backend than Inline. * Fix check for updates mechanism when running Spyder from a conda installation. - Add spyder-pr21939-qtawesome1.3.patch gh#spyder-ide/spyder#21939 but also allow 1.2 - Add spyder-pr21942-pylint3.1.patch gh#spyder-ide/spyder#21942 * Sat Mar 02 2024 Ben Greiner <code@bnavigator.de> - Update to 5.5.1 [#]# New features * Add support to format selections with Black. [#]# Important fixes * Fix several errors when trying to detect if a new Spyder version is available. * Fri Nov 24 2023 Ben Greiner <code@bnavigator.de> - Update to 5.5.0 [#]# New features * Drop support for Python 3.7 * Drop support for PyQt < 5.10 * Improvements to the logic that checks available updates and the update messages * Improvements to the syntax highlighting for match/case keywords * Improved compatibility for the standalone installer with Windows Server 2016 * Additional information about Spyder available through spyder.appdata.xml [#]# Important fixes * Fix Outline Explorer Display variables and attributes option * Fix disabling completion and linting providers * Fix errors when removing language servers configurations * Fix Editor replace all occurences when using backslashes * Fix errors when restarting external kernels * Fix error when using the Online help with Python 3.11 * Fix debugging after errors via the %debug magic * Fix compatibility with Python 2 environments/custom interpreters * Fix application window disappearing when changing monitors * Fix PYTHONPATH manager logic to get user environment variables and detect possible site-packages directories - Drop spyder-pr21470-pylint3.diff * Sun Oct 29 2023 Ben Greiner <code@bnavigator.de> - Raise pylint upper pin (requires update to python-lsp-server) * Add spyder-pr21470-pylint3.diff * Sat Sep 23 2023 Ben Greiner <code@bnavigator.de> - Update to 5.4.5 * Fix Editor scrollflags error on Python 3.7 * Thu Aug 24 2023 Ben Greiner <code@bnavigator.de> - Update to 5.4.4 [#]# New features * Add new shortcuts to switch Editor tabs for macOS (Cmd + 8 and Cmd + 9) * Add syntax highlighting for Python 3.10 missing statements (match and case) * Improve compatibility with PySide2 * Improve Editor scrollflags painting (find matches flags painted above errors and warnings flags) [#]# Important fixes * Fix crash when plugins fail their compatibility checks * Fix LSP status bar error when cliking it * Fix IPython console font size setting * Prevent IPython console This version of python seems to be incorrectly compiled warning message in Python 3.11 * Skip some IPython versions with somes bugs and add some error catching for the IPython console * Fix Editor found results rehighlighting when switching between files * Fix Editor class/function dropdown widget when using splited editors * Fix Editor line numbers and autoformat cursor position when the wrap lines option is enabled * Fix Editor error when removing unsaved files from Projects/Files explorer while open in the Editor * Prevent Editor QTextCursor::setPosition: Position '-1' out of range warning message * Fix Find functionality for a single file * Fix PYTHONPATH manager focus issues after adding a path * Fix Online Help issues when searching for numpy or pandas * Fix Windows installer being launched with admin rights after installation/autoupdate * Fix Windows installer conda environments activation logic when there are spaces in the installation path * Fix macOS standalone installer workflow and notarization process with new certificate - Raise jedi pin to <0.20 * Thu Apr 27 2023 Ben Greiner <code@bnavigator.de> - Update to 5.4.3 [#]# New features * Add support for QDarkstyle 3.1 * Add support for Jupyter-client 8 * Add mambaforge and miniforge when searching for conda environments [#]# Important fixes * Fix IPython Console completions, traceback handling and other issues to better support IPython 8.x * Fix compatibility issues with PyZMQ 25.x * Add warning message before loading spydata files * Fix web based widgets display by adding the --no-sandbox argument for QtApplication * Fix copy and paste shortcuts for the Files and Projects explorer panes * Fix Editor issues related with handling LSP server failed starts * Fix Editor issues related with restoring previous session and file changes outside Spyder * Fix PYTHONPATH manager showing extra paths and other related errors * Fix update available notification with pip based installations * Fix some UX/UI issues for the find replace widget when the Editor has a small width * Removal of Python 2 related code * Thu Jan 19 2023 Ben Greiner <code@bnavigator.de> - Update to 5.4.2 * Fix issues detected with PyZMQ 25 * Fix dot completions and improve support for files and directories completions * Fix getting current user enviroment variables * Fix cursor position restauration after autoformat when saving files * Fix error when reverting unexisting files * Fix some issues related with Python 3.11 compatibility * Fri Dec 30 2022 Ben Greiner <code@bnavigator.de> - Update to 5.4.1 [#]# New features * Support for IPython 8 * Improvements for code completion and help offered for scientific modules (Numpy, Pandas, Matplotlib and Scipy) * Improvements to the UX/UI of the FindReplace widget (find and replace functionality) * New PYTHONPATH manager plugin [#]# Important fixes * Improve/fix errors regarding the New Window and Split window Editor funtionality and general RuntimeErrors on the Editor * Improvements when syncing symbols and folding code functionality for the Editor * Fix PYTHONPATH handling for the IPython console * Some fixes for code completion and code style linting functionality * Some fixes/improvements regarding UX/UI for the IPython console pane, menu and context menu generation * Some improvements regarding UX/UI for the current working directory toolbar [#]# New API features * Improvements to the way Spyder handles menus sections additions * Sun Nov 06 2022 Ben Greiner <code@bnavigator.de> - Update to 5.4.0 [#]# New features * Now the Code Analysis/Pylint plugin uses the current custom interpreter/environment if set * Option to show user environment variables extended to all operative systems (previously available only for Windows) [#]# Important fixes * Improve Outline Explorer plugin performance and fix updating process when it becomes visible * Improvements to colors on the dependencies dialog and IPython console * Fix IPython console issues on the Matplotlib TkInter backend with debugging and an increase of CPU and memory usage while in an idle state * Fix IPython console memory leak when using the Matplotlib Qt ackend * Fix IPython console input() issue on MacOS * Fix IPython console kernel error regarding environment path as unexpected argument * Fix Spyder 3 icon theme load on Windows with untrusted fonts security restrictions * Fix the Autoformat files on save functionality to not hang with non-Python files * Some fixes for cell execution on Python 3.11 * Some fixes to shortcuts (Switch to Editor, Find Next, Find Previous) * Some fixes to improve compatibility with PySide2 * Some fixes to prevent blurry SVG icons * Wed Aug 31 2022 andy great <andythe_great@pm.me> - Update to 5.3.3. * New features * Printing files now uses a light syntax highlighting theme to prevent printing files with dark backgrounds. * Important fixes * Fix several bugs related with the Layout plugin (save visible plugins to restore their visiility and tabify behavior for external plugins). * Fix several bugs related with the focus management between the Editor and other panes. * Improve Find and Replace speed on the Editor. * Sat Jul 23 2022 Ben Greiner <code@bnavigator.de> - Update to 5.3.2 * New entry from the Editor context menu to Show help for current object. * Improve UX/UI for the repositioning panes functionality. * Fix several bugs related to the debugging functionality (remote kernels usage and Pdb history). * Fix incompatibility with Pylint 2.14.0+. * Fix several bugs related with the Plots pane. * Add create_client_for_kernel and rename_client_tab to the Ipython Console plugin so that other plugins can access to console creation like Spyder-notebook. * Sun Jun 05 2022 Ben Greiner <code@bnavigator.de> - Update the requirements, add note about test suite * Tue May 24 2022 andy great <andythe_great@pm.me> - Update to version 5.3.1. * New features * Add a toolbar to the Variable Explorer viewer for dictionaries, lists and sets to easily access the functionality available through its context menu. * Add navigation with extra buttons in the editor for mouses that support them. * Add --no-web-widgets command line option to disable plugins/widgets that use Qt Webengine widgets. * Important fixes * Fix several important bugs related to the Autoformat on save functionality. * Fix options related to the Working directory entry in Preferences. * Make code completion widget entries accessible to screen readers. * New API features * Add get_command_line_options to SpyderPluginV2 so that plugins can access the command line options passed to Spyder. * The current interpreter used by all Spyder plugins can be accessed now through the executable option of the Main \ interpreter plugin. * Full changelog here, * https://github.com/spyder-ide/spyder/releases/tag/v5.3.1 * Sat Apr 09 2022 Ben Greiner <code@bnavigator.de> - Update to version 5.3.0 * New Run to current line and Run from current line actions in the Editor * New option to reset per-file run configurations * Now the spyder-terminal plugin comes bundled with the standalone installers (MacOS and Windows) * Now the standalone Windows installers come with Python 3.8.10 * Drop support for Python 3.6 * Fix the restart logic in the IPython Console to set Matplotlib interactive backends * Fix some issues related to Black formatting configuration and usage * Improve Editor performance by decreasing the amount of requests (didChange request) made to the pylsp server * Disable Kite provider for completions * Require IPython => 7.31.1 due to CVE-2022-21699 * Several fixes for type errors with Python 3.10 * New API features * New on_close method for the PluginMainWidget class that its called on closeEvent * Fri Mar 25 2022 Ben Greiner <code@bnavigator.de> - Fix unpinning of IPython and unpin pyls * Fri Jan 21 2022 Ben Greiner <code@bnavigator.de> - Update to version 5.2.2 * Fix several issues regarding the IPython Console kernel restart, shutdown and bening errors handling * Sun Dec 19 2021 Ben Greiner <code@bnavigator.de> - Update to version 5.2.1 * Prevent Spyder from crashing when selecting an interpreter with an incorrect spyder-kernels version * Optimize several operations in the Editor and IPython Console * Fri Nov 26 2021 Ben Greiner <code@bnavigator.de> - Update to version 5.2.0 * Add new entry in preferences to turn off plugins * Add experimental support for PySide2 * Show standard streams when running code in the IPython Console * Speed up search in the Find plugin * Migrate the IPython Console to the new API * Add new mechanism for plugin teardowm * Add a way to create stacked widgets connected to the IPython Console like Plots and the Variable explorer - Drop spyder-pr16565-unpin-pylint.patch fixed upstream - Drop spyder-jupyter_client7.patch fixed upstream * Wed Oct 27 2021 Ben Greiner <code@bnavigator.de> - Add patches required for newer distro packages * spyder-pr16565-unpin-pylint.patch gh#spyder-ide/spyder#16565 * spyder-jupyter_client7.patch * Mon Sep 20 2021 Ben Greiner <code@bnavigator.de> - Still crashing the linux kernel. Disable tests. boo#1190482 * Thu Sep 16 2021 Ben Greiner <code@bnavigator.de> - Update to version 5.1.5 * Fix docking of external plugins. * Catch error when starting watcher (Projects) * Improve appearance of toolbar extension button - Another take on the kernel crash / OOM issue: test everything (including slow tests) within one xvfb-run boo#1190482 * Wed Sep 15 2021 Ben Greiner <code@bnavigator.de> - kernel still crashing. Disable slow tests for now. * Tue Sep 14 2021 Ben Greiner <code@bnavigator.de> - Update to version 5.1.4 * Fix serious memory leaks and improve performance when typing in the editor. * Fix Issue 16401 - Trim all newlines after the final one when saving a file causes Spyder to freeze when saving a blank file * Fix Issue 16384 - Editor becomes sluggish when displaying errors * Fix Issue 16343 - No handler for workspace/executeCommand request - Avoid kernel crash (!?) at testspyder bash function return * boo#1190482 * Wed Sep 08 2021 Ben Greiner <code@bnavigator.de> - Clean a few test skips, add a new one - remove _constraints * Mon Sep 06 2021 Ben Greiner <code@bnavigator.de> - Update to version 5.1.3 * Fix RTreeError with snippets * Fix TypeError with snippets - Filter new rpmlint 2 errors in spyder-rpmlintrc * Thu Sep 02 2021 Ben Greiner <code@bnavigator.de> - Update to version 5.1.2 * Add an entry called Restart in debug mode to the File menu. That will allow users to inspect the log files generated by Spyder by going to the menu Tools > Debug logs after the restart. * Add a new command line option called --conf-dir to set a custom configuration directory for Spyder. * Show hidden directories in Projects by default. * Use toolbar ids and widget/action ids when adding an item to a toolbar. * Use menu and item ids to add items to the Main Menu plugin. * Fix several performance issues in the Editor. * Fix slow browsing of variables in the Variable Explorer when Numpy and Pandas are not installed. * Discard symbols imported from other libraries in the Outline pane. * Fri Aug 20 2021 Ben Greiner <code@bnavigator.de> - Fix typo: now really skip the test. It did not even fail in staging, but still fails in Factory. * Fri Aug 20 2021 Ben Greiner <code@bnavigator.de> - Skip one more potentially segfaulting test * Thu Aug 05 2021 Ben Greiner <code@bnavigator.de> - Update to version 5.1.1 * Fix loading internal plugins, which prevents a crash at startup in Python 3.8+ and issues with completion and linting in other versions. * Make functionality related to Jedi work in our Windows installer again. - Release of version 5.1.0 * New logo, splash screen and design for the "About Spyder" dialog. * Support Rich and Colorama in the IPython console. * Pasting code in the Editor and IPython console preserves indentation. * Add a new registration mechanism for plugins that allow bidirectional dependencies among them. See this page for instructions on how to migrate to it. * Fix several critical bugs in the Outline pane. * Restore ability to ignore linting messages with inline comments in the Editor. Supported comments include # noqa and [#] analysis:ignore. * Improve code completion performance in the Editor. * Fix Code analysis pane in the Windows and macOS installers. * Decrease startup time. * Support Jedi 0.18 and Parso 0.8 - Drop patches merged upstream * spyder-pr15657-python-lsp-server.patch * spyder-pr16011-pytest-qt-4.patch - Make use of CI environment variable due to new conftest.py logic * Tue Jul 13 2021 Ben Greiner <code@bnavigator.de> - Replace python-python-language-server with python-lsp-server * spyder-pr15657-python-lsp-server.patch * gh#spyder-ide/spyder#15657 - Support pytest-qt >= 4 * spyder-pr16011-pytest-qt-4.patch * gh#spyder-ide/spyder#16011 * Thu Jun 24 2021 Ben Greiner <code@bnavigator.de> - Update to version 5.0.5 * Catch any error when trying to detect if Kite installers are available. * Add border around WebView widgets - Drop tame-kite-installer-check.patch, fixed upstream * Mon Jun 14 2021 Ben Greiner <code@bnavigator.de> - Add tame-kite-installer-check.patch * Mon Jun 14 2021 Ben Greiner <code@bnavigator.de> - Update to version 5.0.4 * Programmatic addition of new layouts * Fix debugger for IPython 7.24.0 * Fix loading complex third-party plugins * Fix errors when restarting kernels * Fri May 21 2021 Ben Greiner <code@bnavigator.de> - Unpin watchdog. boo#1186327 - Fix spyder-kernels dep - reenable ipythonconsole tests for 32-bit: no bpf failures anymore - reenable dependency checks during tests * Mon May 17 2021 Ben Greiner <code@bnavigator.de> - Update to version 5.0.3 * Add rtree as a dependency for our pip packages. * Scroll pager content with keys (IPython console) * Move css_path to Appearance config section (IPython Console) * Mon May 10 2021 Ben Greiner <code@bnavigator.de> - Update to version 5.0.2 * Fix error when restarting kernels. * Fix outline, folding and go-to-defintion when Kite is installed. * Make Plots pane show again separate plots generated in different consoles. * Fix preferences error when following Kite's tutorial. * Mon Apr 19 2021 Ben Greiner <code@bnavigator.de> - Add python-language-server[all] requirements and unpin packages in generated egg-info/requires.txt because they are checked on startup now. * Sat Apr 17 2021 Ben Greiner <code@bnavigator.de> - Update to version 5.0.1 * Avoid false warning about incorrect spyder-kernels version. * Fix error when opening a new editor window. * Fix error when saving layouts. * Fix several style issues. * Fix clicking on tracebacks in the IPython console. - Unpin jedi and parso. python-python-language-server has been patched. * Thu Apr 08 2021 Ben Greiner <code@bnavigator.de> - Update to version 5.0.0 * Improved dark theme based on QDarkstyle 3.0. * New light theme based on QDarkstyle 3.0. * New look and feel for toolbars. * New icon set based on Material Design. * New API to extend core plugins, with the exception of the Editor, IPython console and Projects. * New plugins to manage menus, toolbars, layouts, shortcuts, preferences and status bar. * New architecture to access and write configuration options. * New API to declare code completion providers. * New registries to access actions, tool buttons, toolbars and menus by their identifiers. * Sun Mar 28 2021 Ben Greiner <code@bnavigator.de> - Remove removal of early QtWebEngine import before tests. It triggered a fallback to testing with qtwebkit which is being removed from Tumbleweed - Switch to xvfb-run instead of pytest-xvfb to avoid gh#The-Compiler/pytest-xvfb#11 - Replace pytest-ordering marks with pytest-order gh#spyder-ide/spyder#14935 * Thu Mar 25 2021 Ben Greiner <code@bnavigator.de> - Update to version 4.2.5 * Fix restoring window properties at startup. * Fix a segfault when restarting kernels. * Fix a segfault when processing linting results. * Fri Mar 19 2021 Ben Greiner <code@bnavigator.de> - Update to version 4.2.4 * Fix an important error when restarting kernels. * Add compatibility with the future Spyder * Mon Mar 15 2021 Ben Greiner <code@bnavigator.de> - remove pytest-ordering -- gh#spyder-ide/spyder#14935 * Thu Mar 04 2021 Ben Greiner <code@bnavigator.de> - Update to version 4.2.3 * Fix a very visible bug with Kite installation. * Make Find pane to correctly highlight results in the editor. * Don't show "No such comm" message when restaring kernels. - Explicitly limit upper version if Jedi and Parso * Wed Feb 24 2021 Ben Greiner <code@bnavigator.de> - The apps dialog segfault is back. (QtAwesome, qtwebengine?) * Mon Feb 22 2021 Ben Greiner <code@bnavigator.de> - Update to version 4.2.2 * Improve performance when typing in the editor. * Make variable explorer work for kernels started in remote servers. - Drop spyder-pr14514-fix-pandas120.patch merged upstream * Mon Feb 15 2021 Ben Greiner <code@bnavigator.de> - Add spyder-pr14514-fix-pandas120.patch to work with pandas 1.2 gh#spyder-ide/spyder/14514 * Fri Jan 15 2021 Benjamin Greiner <code@bnavigator.de> - Skip two more tests which are too slow for qtbot on OBS and one test producing segfaults.
/usr/bin/spyder /usr/lib/python3.11/site-packages/spyder /usr/lib/python3.11/site-packages/spyder-6.0.1.dist-info /usr/lib/python3.11/site-packages/spyder-6.0.1.dist-info/AUTHORS.txt /usr/lib/python3.11/site-packages/spyder-6.0.1.dist-info/INSTALLER /usr/lib/python3.11/site-packages/spyder-6.0.1.dist-info/LICENSE.txt /usr/lib/python3.11/site-packages/spyder-6.0.1.dist-info/METADATA /usr/lib/python3.11/site-packages/spyder-6.0.1.dist-info/NOTICE.txt /usr/lib/python3.11/site-packages/spyder-6.0.1.dist-info/RECORD /usr/lib/python3.11/site-packages/spyder-6.0.1.dist-info/REQUESTED /usr/lib/python3.11/site-packages/spyder-6.0.1.dist-info/WHEEL /usr/lib/python3.11/site-packages/spyder-6.0.1.dist-info/entry_points.txt /usr/lib/python3.11/site-packages/spyder-6.0.1.dist-info/top_level.txt /usr/lib/python3.11/site-packages/spyder/__init__.py /usr/lib/python3.11/site-packages/spyder/__pycache__ /usr/lib/python3.11/site-packages/spyder/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/__pycache__/dependencies.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/__pycache__/dependencies.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/__pycache__/pil_patch.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/__pycache__/pil_patch.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/__pycache__/py3compat.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/__pycache__/py3compat.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/__pycache__/pyplot.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/__pycache__/pyplot.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/__pycache__/requirements.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/__pycache__/requirements.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api /usr/lib/python3.11/site-packages/spyder/api/__init__.py /usr/lib/python3.11/site-packages/spyder/api/__pycache__ /usr/lib/python3.11/site-packages/spyder/api/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/__pycache__/_version.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/__pycache__/_version.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/__pycache__/asyncdispatcher.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/__pycache__/asyncdispatcher.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/__pycache__/editor.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/__pycache__/editor.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/__pycache__/exceptions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/__pycache__/exceptions.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/__pycache__/fonts.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/__pycache__/fonts.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/__pycache__/preferences.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/__pycache__/preferences.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/__pycache__/shortcuts.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/__pycache__/shortcuts.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/__pycache__/translations.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/__pycache__/translations.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/__pycache__/utils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/__pycache__/utils.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/_version.py /usr/lib/python3.11/site-packages/spyder/api/asyncdispatcher.py /usr/lib/python3.11/site-packages/spyder/api/config /usr/lib/python3.11/site-packages/spyder/api/config/__init__.py /usr/lib/python3.11/site-packages/spyder/api/config/__pycache__ /usr/lib/python3.11/site-packages/spyder/api/config/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/config/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/config/__pycache__/decorators.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/config/__pycache__/decorators.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/config/__pycache__/mixins.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/config/__pycache__/mixins.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/config/decorators.py /usr/lib/python3.11/site-packages/spyder/api/config/mixins.py /usr/lib/python3.11/site-packages/spyder/api/editor.py /usr/lib/python3.11/site-packages/spyder/api/exceptions.py /usr/lib/python3.11/site-packages/spyder/api/fonts.py /usr/lib/python3.11/site-packages/spyder/api/plugin_registration /usr/lib/python3.11/site-packages/spyder/api/plugin_registration/__init__.py /usr/lib/python3.11/site-packages/spyder/api/plugin_registration/__pycache__ /usr/lib/python3.11/site-packages/spyder/api/plugin_registration/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/plugin_registration/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/plugin_registration/__pycache__/_confpage.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/plugin_registration/__pycache__/_confpage.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/plugin_registration/__pycache__/decorators.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/plugin_registration/__pycache__/decorators.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/plugin_registration/__pycache__/mixins.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/plugin_registration/__pycache__/mixins.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/plugin_registration/__pycache__/registry.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/plugin_registration/__pycache__/registry.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/plugin_registration/_confpage.py /usr/lib/python3.11/site-packages/spyder/api/plugin_registration/decorators.py /usr/lib/python3.11/site-packages/spyder/api/plugin_registration/mixins.py /usr/lib/python3.11/site-packages/spyder/api/plugin_registration/registry.py /usr/lib/python3.11/site-packages/spyder/api/plugins /usr/lib/python3.11/site-packages/spyder/api/plugins/__init__.py /usr/lib/python3.11/site-packages/spyder/api/plugins/__pycache__ /usr/lib/python3.11/site-packages/spyder/api/plugins/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/plugins/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/plugins/__pycache__/_old_api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/plugins/__pycache__/_old_api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/plugins/__pycache__/enum.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/plugins/__pycache__/enum.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/plugins/__pycache__/new_api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/plugins/__pycache__/new_api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/plugins/_old_api.py /usr/lib/python3.11/site-packages/spyder/api/plugins/enum.py /usr/lib/python3.11/site-packages/spyder/api/plugins/new_api.py /usr/lib/python3.11/site-packages/spyder/api/preferences.py /usr/lib/python3.11/site-packages/spyder/api/shellconnect /usr/lib/python3.11/site-packages/spyder/api/shellconnect/__init__.py /usr/lib/python3.11/site-packages/spyder/api/shellconnect/__pycache__ /usr/lib/python3.11/site-packages/spyder/api/shellconnect/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/shellconnect/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/shellconnect/__pycache__/main_widget.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/shellconnect/__pycache__/main_widget.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/shellconnect/__pycache__/mixins.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/shellconnect/__pycache__/mixins.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/shellconnect/__pycache__/status.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/shellconnect/__pycache__/status.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/shellconnect/main_widget.py /usr/lib/python3.11/site-packages/spyder/api/shellconnect/mixins.py /usr/lib/python3.11/site-packages/spyder/api/shellconnect/status.py /usr/lib/python3.11/site-packages/spyder/api/shortcuts.py /usr/lib/python3.11/site-packages/spyder/api/translations.py /usr/lib/python3.11/site-packages/spyder/api/utils.py /usr/lib/python3.11/site-packages/spyder/api/widgets /usr/lib/python3.11/site-packages/spyder/api/widgets/__init__.py /usr/lib/python3.11/site-packages/spyder/api/widgets/__pycache__ /usr/lib/python3.11/site-packages/spyder/api/widgets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/widgets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/widgets/__pycache__/auxiliary_widgets.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/widgets/__pycache__/auxiliary_widgets.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/widgets/__pycache__/comboboxes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/widgets/__pycache__/comboboxes.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/widgets/__pycache__/dialogs.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/widgets/__pycache__/dialogs.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/widgets/__pycache__/main_container.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/widgets/__pycache__/main_container.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/widgets/__pycache__/main_widget.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/widgets/__pycache__/main_widget.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/widgets/__pycache__/menus.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/widgets/__pycache__/menus.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/widgets/__pycache__/mixins.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/widgets/__pycache__/mixins.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/widgets/__pycache__/status.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/widgets/__pycache__/status.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/widgets/__pycache__/toolbars.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/api/widgets/__pycache__/toolbars.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/api/widgets/auxiliary_widgets.py /usr/lib/python3.11/site-packages/spyder/api/widgets/comboboxes.py /usr/lib/python3.11/site-packages/spyder/api/widgets/dialogs.py /usr/lib/python3.11/site-packages/spyder/api/widgets/main_container.py /usr/lib/python3.11/site-packages/spyder/api/widgets/main_widget.py /usr/lib/python3.11/site-packages/spyder/api/widgets/menus.py /usr/lib/python3.11/site-packages/spyder/api/widgets/mixins.py /usr/lib/python3.11/site-packages/spyder/api/widgets/status.py /usr/lib/python3.11/site-packages/spyder/api/widgets/toolbars.py /usr/lib/python3.11/site-packages/spyder/app /usr/lib/python3.11/site-packages/spyder/app/__init__.py /usr/lib/python3.11/site-packages/spyder/app/__pycache__ /usr/lib/python3.11/site-packages/spyder/app/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/app/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/app/__pycache__/cli_options.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/app/__pycache__/cli_options.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/app/__pycache__/find_plugins.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/app/__pycache__/find_plugins.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/app/__pycache__/mainwindow.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/app/__pycache__/mainwindow.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/app/__pycache__/restart.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/app/__pycache__/restart.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/app/__pycache__/start.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/app/__pycache__/start.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/app/__pycache__/utils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/app/__pycache__/utils.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/app/cli_options.py /usr/lib/python3.11/site-packages/spyder/app/find_plugins.py /usr/lib/python3.11/site-packages/spyder/app/mainwindow.py /usr/lib/python3.11/site-packages/spyder/app/restart.py /usr/lib/python3.11/site-packages/spyder/app/start.py /usr/lib/python3.11/site-packages/spyder/app/utils.py /usr/lib/python3.11/site-packages/spyder/config /usr/lib/python3.11/site-packages/spyder/config/__init__.py /usr/lib/python3.11/site-packages/spyder/config/__pycache__ /usr/lib/python3.11/site-packages/spyder/config/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/config/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/config/__pycache__/appearance.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/config/__pycache__/appearance.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/config/__pycache__/base.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/config/__pycache__/base.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/config/__pycache__/fonts.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/config/__pycache__/fonts.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/config/__pycache__/gui.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/config/__pycache__/gui.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/config/__pycache__/lsp.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/config/__pycache__/lsp.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/config/__pycache__/main.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/config/__pycache__/main.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/config/__pycache__/manager.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/config/__pycache__/manager.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/config/__pycache__/snippets.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/config/__pycache__/snippets.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/config/__pycache__/types.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/config/__pycache__/types.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/config/__pycache__/user.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/config/__pycache__/user.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/config/__pycache__/utils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/config/__pycache__/utils.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/config/appearance.py /usr/lib/python3.11/site-packages/spyder/config/base.py /usr/lib/python3.11/site-packages/spyder/config/fonts.py /usr/lib/python3.11/site-packages/spyder/config/gui.py /usr/lib/python3.11/site-packages/spyder/config/lsp.py /usr/lib/python3.11/site-packages/spyder/config/main.py /usr/lib/python3.11/site-packages/spyder/config/manager.py /usr/lib/python3.11/site-packages/spyder/config/snippets.py /usr/lib/python3.11/site-packages/spyder/config/types.py /usr/lib/python3.11/site-packages/spyder/config/user.py /usr/lib/python3.11/site-packages/spyder/config/utils.py /usr/lib/python3.11/site-packages/spyder/dependencies.py /usr/lib/python3.11/site-packages/spyder/fonts /usr/lib/python3.11/site-packages/spyder/fonts/IdeFont.sfd /usr/lib/python3.11/site-packages/spyder/fonts/spyder-charmap.json /usr/lib/python3.11/site-packages/spyder/fonts/spyder.ttf /usr/lib/python3.11/site-packages/spyder/images /usr/lib/python3.11/site-packages/spyder/images/LICENSE.txt /usr/lib/python3.11/site-packages/spyder/images/actions /usr/lib/python3.11/site-packages/spyder/images/actions/hide.png /usr/lib/python3.11/site-packages/spyder/images/actions/not_found.png /usr/lib/python3.11/site-packages/spyder/images/code-analysis.svg /usr/lib/python3.11/site-packages/spyder/images/code-profiler.svg /usr/lib/python3.11/site-packages/spyder/images/console /usr/lib/python3.11/site-packages/spyder/images/console-off.svg /usr/lib/python3.11/site-packages/spyder/images/console-remote-off.svg /usr/lib/python3.11/site-packages/spyder/images/console/loading_sprites.png /usr/lib/python3.11/site-packages/spyder/images/dark /usr/lib/python3.11/site-packages/spyder/images/dark/ArchiveFileIcon.svg /usr/lib/python3.11/site-packages/spyder/images/dark/binary.svg /usr/lib/python3.11/site-packages/spyder/images/dark/clear_console.svg /usr/lib/python3.11/site-packages/spyder/images/dark/connection_connected.svg /usr/lib/python3.11/site-packages/spyder/images/dark/connection_disconnected.svg /usr/lib/python3.11/site-packages/spyder/images/dark/connection_error.svg /usr/lib/python3.11/site-packages/spyder/images/dark/connection_waiting.svg /usr/lib/python3.11/site-packages/spyder/images/dark/debug.svg /usr/lib/python3.11/site-packages/spyder/images/dark/debug_cell.svg /usr/lib/python3.11/site-packages/spyder/images/dark/debug_selection.svg /usr/lib/python3.11/site-packages/spyder/images/dark/dock.svg /usr/lib/python3.11/site-packages/spyder/images/dark/editdelete.svg /usr/lib/python3.11/site-packages/spyder/images/dark/environ.svg /usr/lib/python3.11/site-packages/spyder/images/dark/file_type_tex.svg /usr/lib/python3.11/site-packages/spyder/images/dark/filecloseall.svg /usr/lib/python3.11/site-packages/spyder/images/dark/findnext.svg /usr/lib/python3.11/site-packages/spyder/images/dark/findprevious.svg /usr/lib/python3.11/site-packages/spyder/images/dark/genprefs.svg /usr/lib/python3.11/site-packages/spyder/images/dark/go_to_editor.svg /usr/lib/python3.11/site-packages/spyder/images/dark/horsplit.svg /usr/lib/python3.11/site-packages/spyder/images/dark/interrupt_and_debug.svg /usr/lib/python3.11/site-packages/spyder/images/dark/last_edit_location.svg /usr/lib/python3.11/site-packages/spyder/images/dark/list_breakpoints.svg /usr/lib/python3.11/site-packages/spyder/images/dark/maximize.png /usr/lib/python3.11/site-packages/spyder/images/dark/maximize_svg.svg /usr/lib/python3.11/site-packages/spyder/images/dark/new_cell.svg /usr/lib/python3.11/site-packages/spyder/images/dark/notebook.svg /usr/lib/python3.11/site-packages/spyder/images/dark/package_new.svg /usr/lib/python3.11/site-packages/spyder/images/dark/postmortem_debug.svg /usr/lib/python3.11/site-packages/spyder/images/dark/project_close.svg /usr/lib/python3.11/site-packages/spyder/images/dark/project_delete.svg /usr/lib/python3.11/site-packages/spyder/images/dark/project_new.svg /usr/lib/python3.11/site-packages/spyder/images/dark/project_open.svg /usr/lib/python3.11/site-packages/spyder/images/dark/project_preferences.svg /usr/lib/python3.11/site-packages/spyder/images/dark/project_spyder.svg /usr/lib/python3.11/site-packages/spyder/images/dark/pylint.svg /usr/lib/python3.11/site-packages/spyder/images/dark/replace_all.svg /usr/lib/python3.11/site-packages/spyder/images/dark/replace_next.svg /usr/lib/python3.11/site-packages/spyder/images/dark/replace_selection.svg /usr/lib/python3.11/site-packages/spyder/images/dark/reset_factory_defaults.svg /usr/lib/python3.11/site-packages/spyder/images/dark/run_again.svg /usr/lib/python3.11/site-packages/spyder/images/dark/run_cell.svg /usr/lib/python3.11/site-packages/spyder/images/dark/run_cell_advance.svg /usr/lib/python3.11/site-packages/spyder/images/dark/run_selection.svg /usr/lib/python3.11/site-packages/spyder/images/dark/run_settings.svg /usr/lib/python3.11/site-packages/spyder/images/dark/spyder_about.svg /usr/lib/python3.11/site-packages/spyder/images/dark/syspath.svg /usr/lib/python3.11/site-packages/spyder/images/dark/versplit.svg /usr/lib/python3.11/site-packages/spyder/images/dark/zoom_in.svg /usr/lib/python3.11/site-packages/spyder/images/dark/zoom_out.svg /usr/lib/python3.11/site-packages/spyder/images/debugger.svg /usr/lib/python3.11/site-packages/spyder/images/dependencies.svg /usr/lib/python3.11/site-packages/spyder/images/find_empty.svg /usr/lib/python3.11/site-packages/spyder/images/light /usr/lib/python3.11/site-packages/spyder/images/light/ArchiveFileIcon.svg /usr/lib/python3.11/site-packages/spyder/images/light/binary.svg /usr/lib/python3.11/site-packages/spyder/images/light/clear_console.svg /usr/lib/python3.11/site-packages/spyder/images/light/connection_connected.svg /usr/lib/python3.11/site-packages/spyder/images/light/connection_disconnected.svg /usr/lib/python3.11/site-packages/spyder/images/light/connection_error.svg /usr/lib/python3.11/site-packages/spyder/images/light/connection_waiting.svg /usr/lib/python3.11/site-packages/spyder/images/light/debug.svg /usr/lib/python3.11/site-packages/spyder/images/light/debug_cell.svg /usr/lib/python3.11/site-packages/spyder/images/light/debug_selection.svg /usr/lib/python3.11/site-packages/spyder/images/light/dock.svg /usr/lib/python3.11/site-packages/spyder/images/light/editdelete.svg /usr/lib/python3.11/site-packages/spyder/images/light/environ.svg /usr/lib/python3.11/site-packages/spyder/images/light/file_type_tex.svg /usr/lib/python3.11/site-packages/spyder/images/light/filecloseall.svg /usr/lib/python3.11/site-packages/spyder/images/light/findnext.svg /usr/lib/python3.11/site-packages/spyder/images/light/findprevious.svg /usr/lib/python3.11/site-packages/spyder/images/light/genprefs.svg /usr/lib/python3.11/site-packages/spyder/images/light/go_to_editor.svg /usr/lib/python3.11/site-packages/spyder/images/light/horsplit.svg /usr/lib/python3.11/site-packages/spyder/images/light/interrupt_and_debug.svg /usr/lib/python3.11/site-packages/spyder/images/light/last_edit_location.svg /usr/lib/python3.11/site-packages/spyder/images/light/list_breakpoints.svg /usr/lib/python3.11/site-packages/spyder/images/light/maximize.png /usr/lib/python3.11/site-packages/spyder/images/light/maximize_svg.svg /usr/lib/python3.11/site-packages/spyder/images/light/new_cell.svg /usr/lib/python3.11/site-packages/spyder/images/light/new_project.svg /usr/lib/python3.11/site-packages/spyder/images/light/notebook.svg /usr/lib/python3.11/site-packages/spyder/images/light/package_new.svg /usr/lib/python3.11/site-packages/spyder/images/light/postmortem_debug.svg /usr/lib/python3.11/site-packages/spyder/images/light/project_close.svg /usr/lib/python3.11/site-packages/spyder/images/light/project_delete.svg /usr/lib/python3.11/site-packages/spyder/images/light/project_new.svg /usr/lib/python3.11/site-packages/spyder/images/light/project_open.svg /usr/lib/python3.11/site-packages/spyder/images/light/project_preferences.svg /usr/lib/python3.11/site-packages/spyder/images/light/project_spyder.svg /usr/lib/python3.11/site-packages/spyder/images/light/pylint.svg /usr/lib/python3.11/site-packages/spyder/images/light/replace_all.svg /usr/lib/python3.11/site-packages/spyder/images/light/replace_next.svg /usr/lib/python3.11/site-packages/spyder/images/light/replace_selection.svg /usr/lib/python3.11/site-packages/spyder/images/light/reset_factory_defaults.svg /usr/lib/python3.11/site-packages/spyder/images/light/run_again.svg /usr/lib/python3.11/site-packages/spyder/images/light/run_cell.svg /usr/lib/python3.11/site-packages/spyder/images/light/run_cell_advance.svg /usr/lib/python3.11/site-packages/spyder/images/light/run_selection.svg /usr/lib/python3.11/site-packages/spyder/images/light/run_settings.svg /usr/lib/python3.11/site-packages/spyder/images/light/spyder_about.svg /usr/lib/python3.11/site-packages/spyder/images/light/syspath.svg /usr/lib/python3.11/site-packages/spyder/images/light/versplit.svg /usr/lib/python3.11/site-packages/spyder/images/light/zoom_in.svg /usr/lib/python3.11/site-packages/spyder/images/light/zoom_out.svg /usr/lib/python3.11/site-packages/spyder/images/mac_light_icons /usr/lib/python3.11/site-packages/spyder/images/mac_light_icons/close_button.png /usr/lib/python3.11/site-packages/spyder/images/plots.svg /usr/lib/python3.11/site-packages/spyder/images/projects.svg /usr/lib/python3.11/site-packages/spyder/images/splash.svg /usr/lib/python3.11/site-packages/spyder/images/spyder.svg /usr/lib/python3.11/site-packages/spyder/images/tour /usr/lib/python3.11/site-packages/spyder/images/tour/tour-spyder-logo.svg /usr/lib/python3.11/site-packages/spyder/images/transparent.svg /usr/lib/python3.11/site-packages/spyder/images/variable-explorer.svg /usr/lib/python3.11/site-packages/spyder/images/windows_app_icon.ico /usr/lib/python3.11/site-packages/spyder/pil_patch.py /usr/lib/python3.11/site-packages/spyder/plugins /usr/lib/python3.11/site-packages/spyder/plugins/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/__pycache__/base.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/__pycache__/base.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/appearance /usr/lib/python3.11/site-packages/spyder/plugins/appearance/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/appearance/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/appearance/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/appearance/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/appearance/__pycache__/confpage.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/appearance/__pycache__/confpage.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/appearance/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/appearance/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/appearance/__pycache__/widgets.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/appearance/__pycache__/widgets.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/appearance/confpage.py /usr/lib/python3.11/site-packages/spyder/plugins/appearance/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/appearance/widgets.py /usr/lib/python3.11/site-packages/spyder/plugins/application /usr/lib/python3.11/site-packages/spyder/plugins/application/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/application/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/application/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/application/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/application/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/application/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/application/__pycache__/confpage.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/application/__pycache__/confpage.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/application/__pycache__/container.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/application/__pycache__/container.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/application/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/application/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/application/api.py /usr/lib/python3.11/site-packages/spyder/plugins/application/confpage.py /usr/lib/python3.11/site-packages/spyder/plugins/application/container.py /usr/lib/python3.11/site-packages/spyder/plugins/application/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/application/widgets /usr/lib/python3.11/site-packages/spyder/plugins/application/widgets/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/application/widgets/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/application/widgets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/application/widgets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/application/widgets/__pycache__/about.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/application/widgets/__pycache__/about.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/application/widgets/__pycache__/status.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/application/widgets/__pycache__/status.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/application/widgets/about.py /usr/lib/python3.11/site-packages/spyder/plugins/application/widgets/appeal_page /usr/lib/python3.11/site-packages/spyder/plugins/application/widgets/appeal_page/dark /usr/lib/python3.11/site-packages/spyder/plugins/application/widgets/appeal_page/dark/assets /usr/lib/python3.11/site-packages/spyder/plugins/application/widgets/appeal_page/dark/assets/appeal.css /usr/lib/python3.11/site-packages/spyder/plugins/application/widgets/appeal_page/dark/header_donations.svg /usr/lib/python3.11/site-packages/spyder/plugins/application/widgets/appeal_page/dark/icon_donations.svg /usr/lib/python3.11/site-packages/spyder/plugins/application/widgets/appeal_page/dark/index.html /usr/lib/python3.11/site-packages/spyder/plugins/application/widgets/appeal_page/dark/spyder-logo.svg /usr/lib/python3.11/site-packages/spyder/plugins/application/widgets/appeal_page/light /usr/lib/python3.11/site-packages/spyder/plugins/application/widgets/appeal_page/light/assets /usr/lib/python3.11/site-packages/spyder/plugins/application/widgets/appeal_page/light/assets/appeal.css /usr/lib/python3.11/site-packages/spyder/plugins/application/widgets/appeal_page/light/header_donations.svg /usr/lib/python3.11/site-packages/spyder/plugins/application/widgets/appeal_page/light/icon_donations.svg /usr/lib/python3.11/site-packages/spyder/plugins/application/widgets/appeal_page/light/index.html /usr/lib/python3.11/site-packages/spyder/plugins/application/widgets/appeal_page/light/spyder-logo.svg /usr/lib/python3.11/site-packages/spyder/plugins/application/widgets/status.py /usr/lib/python3.11/site-packages/spyder/plugins/base.py /usr/lib/python3.11/site-packages/spyder/plugins/completion /usr/lib/python3.11/site-packages/spyder/plugins/completion/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/completion/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/__pycache__/confpage.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/__pycache__/confpage.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/__pycache__/container.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/__pycache__/container.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/__pycache__/decorators.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/__pycache__/decorators.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/api.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/confpage.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/container.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/decorators.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/fallback /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/fallback/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/fallback/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/fallback/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/fallback/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/fallback/__pycache__/actor.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/fallback/__pycache__/actor.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/fallback/__pycache__/provider.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/fallback/__pycache__/provider.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/fallback/__pycache__/utils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/fallback/__pycache__/utils.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/fallback/actor.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/fallback/provider.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/fallback/utils.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/__pycache__/client.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/__pycache__/client.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/__pycache__/decorators.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/__pycache__/decorators.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/__pycache__/provider.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/__pycache__/provider.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/client.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/conftabs /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/conftabs/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/conftabs/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/conftabs/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/conftabs/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/conftabs/__pycache__/advanced.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/conftabs/__pycache__/advanced.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/conftabs/__pycache__/docstring.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/conftabs/__pycache__/docstring.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/conftabs/__pycache__/formatting.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/conftabs/__pycache__/formatting.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/conftabs/__pycache__/introspection.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/conftabs/__pycache__/introspection.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/conftabs/__pycache__/linting.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/conftabs/__pycache__/linting.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/conftabs/__pycache__/otherlanguages.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/conftabs/__pycache__/otherlanguages.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/conftabs/advanced.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/conftabs/docstring.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/conftabs/formatting.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/conftabs/introspection.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/conftabs/linting.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/conftabs/otherlanguages.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/decorators.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/provider.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/providers /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/providers/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/providers/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/providers/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/providers/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/providers/__pycache__/client.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/providers/__pycache__/client.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/providers/__pycache__/document.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/providers/__pycache__/document.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/providers/__pycache__/utils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/providers/__pycache__/utils.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/providers/__pycache__/window.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/providers/__pycache__/window.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/providers/__pycache__/workspace.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/providers/__pycache__/workspace.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/providers/client.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/providers/document.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/providers/utils.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/providers/window.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/providers/workspace.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/__pycache__/main.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/__pycache__/main.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/common /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/common/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/common/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/common/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/common/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/common/__pycache__/consumer.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/common/__pycache__/consumer.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/common/__pycache__/producer.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/common/__pycache__/producer.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/common/consumer.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/common/producer.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/main.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/stdio /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/stdio/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/stdio/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/stdio/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/stdio/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/stdio/__pycache__/consumer.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/stdio/__pycache__/consumer.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/stdio/__pycache__/producer.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/stdio/__pycache__/producer.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/stdio/consumer.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/stdio/producer.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/tcp /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/tcp/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/tcp/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/tcp/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/tcp/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/tcp/__pycache__/consumer.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/tcp/__pycache__/consumer.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/tcp/__pycache__/producer.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/tcp/__pycache__/producer.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/tcp/consumer.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/transport/tcp/producer.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/widgets /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/widgets/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/widgets/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/widgets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/widgets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/widgets/__pycache__/messagebox.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/widgets/__pycache__/messagebox.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/widgets/__pycache__/serversconfig.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/widgets/__pycache__/serversconfig.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/widgets/__pycache__/status.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/widgets/__pycache__/status.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/widgets/messagebox.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/widgets/serversconfig.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/languageserver/widgets/status.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/snippets /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/snippets/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/snippets/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/snippets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/snippets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/snippets/__pycache__/actor.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/snippets/__pycache__/actor.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/snippets/__pycache__/conftabs.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/snippets/__pycache__/conftabs.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/snippets/__pycache__/provider.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/snippets/__pycache__/provider.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/snippets/__pycache__/trie.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/snippets/__pycache__/trie.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/snippets/actor.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/snippets/conftabs.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/snippets/provider.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/snippets/trie.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/snippets/widgets /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/snippets/widgets/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/snippets/widgets/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/snippets/widgets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/snippets/widgets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/snippets/widgets/__pycache__/snippetsconfig.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/snippets/widgets/__pycache__/snippetsconfig.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/completion/providers/snippets/widgets/snippetsconfig.py /usr/lib/python3.11/site-packages/spyder/plugins/console /usr/lib/python3.11/site-packages/spyder/plugins/console/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/console/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/console/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/console/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/console/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/console/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/console/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/console/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/console/api.py /usr/lib/python3.11/site-packages/spyder/plugins/console/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/console/utils /usr/lib/python3.11/site-packages/spyder/plugins/console/utils/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/console/utils/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/console/utils/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/console/utils/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/console/utils/__pycache__/ansihandler.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/console/utils/__pycache__/ansihandler.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/console/utils/__pycache__/interpreter.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/console/utils/__pycache__/interpreter.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/console/utils/ansihandler.py /usr/lib/python3.11/site-packages/spyder/plugins/console/utils/interpreter.py /usr/lib/python3.11/site-packages/spyder/plugins/console/widgets /usr/lib/python3.11/site-packages/spyder/plugins/console/widgets/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/console/widgets/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/console/widgets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/console/widgets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/console/widgets/__pycache__/console.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/console/widgets/__pycache__/console.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/console/widgets/__pycache__/internalshell.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/console/widgets/__pycache__/internalshell.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/console/widgets/__pycache__/main_widget.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/console/widgets/__pycache__/main_widget.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/console/widgets/__pycache__/shell.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/console/widgets/__pycache__/shell.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/console/widgets/console.py /usr/lib/python3.11/site-packages/spyder/plugins/console/widgets/internalshell.py /usr/lib/python3.11/site-packages/spyder/plugins/console/widgets/main_widget.py /usr/lib/python3.11/site-packages/spyder/plugins/console/widgets/shell.py /usr/lib/python3.11/site-packages/spyder/plugins/debugger /usr/lib/python3.11/site-packages/spyder/plugins/debugger/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/debugger/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/debugger/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/debugger/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/debugger/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/debugger/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/debugger/__pycache__/confpage.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/debugger/__pycache__/confpage.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/debugger/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/debugger/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/debugger/api.py /usr/lib/python3.11/site-packages/spyder/plugins/debugger/confpage.py /usr/lib/python3.11/site-packages/spyder/plugins/debugger/panels /usr/lib/python3.11/site-packages/spyder/plugins/debugger/panels/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/debugger/panels/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/debugger/panels/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/debugger/panels/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/debugger/panels/__pycache__/debuggerpanel.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/debugger/panels/__pycache__/debuggerpanel.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/debugger/panels/debuggerpanel.py /usr/lib/python3.11/site-packages/spyder/plugins/debugger/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/debugger/utils /usr/lib/python3.11/site-packages/spyder/plugins/debugger/utils/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/debugger/utils/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/debugger/utils/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/debugger/utils/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/debugger/utils/__pycache__/breakpointsmanager.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/debugger/utils/__pycache__/breakpointsmanager.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/debugger/utils/breakpointsmanager.py /usr/lib/python3.11/site-packages/spyder/plugins/debugger/widgets /usr/lib/python3.11/site-packages/spyder/plugins/debugger/widgets/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/debugger/widgets/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/debugger/widgets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/debugger/widgets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/debugger/widgets/__pycache__/breakpoint_table_view.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/debugger/widgets/__pycache__/breakpoint_table_view.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/debugger/widgets/__pycache__/framesbrowser.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/debugger/widgets/__pycache__/framesbrowser.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/debugger/widgets/__pycache__/main_widget.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/debugger/widgets/__pycache__/main_widget.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/debugger/widgets/breakpoint_table_view.py /usr/lib/python3.11/site-packages/spyder/plugins/debugger/widgets/framesbrowser.py /usr/lib/python3.11/site-packages/spyder/plugins/debugger/widgets/main_widget.py /usr/lib/python3.11/site-packages/spyder/plugins/editor /usr/lib/python3.11/site-packages/spyder/plugins/editor/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/editor/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/__pycache__/confpage.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/__pycache__/confpage.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/api /usr/lib/python3.11/site-packages/spyder/plugins/editor/api/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/api/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/editor/api/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/api/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/api/__pycache__/decoration.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/api/__pycache__/decoration.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/api/__pycache__/editorextension.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/api/__pycache__/editorextension.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/api/__pycache__/manager.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/api/__pycache__/manager.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/api/__pycache__/panel.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/api/__pycache__/panel.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/api/__pycache__/run.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/api/__pycache__/run.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/api/decoration.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/api/editorextension.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/api/manager.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/api/panel.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/api/run.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/confpage.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/extensions /usr/lib/python3.11/site-packages/spyder/plugins/editor/extensions/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/extensions/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/editor/extensions/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/extensions/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/extensions/__pycache__/closebrackets.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/extensions/__pycache__/closebrackets.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/extensions/__pycache__/closequotes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/extensions/__pycache__/closequotes.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/extensions/__pycache__/docstring.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/extensions/__pycache__/docstring.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/extensions/__pycache__/manager.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/extensions/__pycache__/manager.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/extensions/__pycache__/snippets.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/extensions/__pycache__/snippets.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/extensions/closebrackets.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/extensions/closequotes.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/extensions/docstring.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/extensions/manager.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/extensions/snippets.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/__pycache__/classfunctiondropdown.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/__pycache__/classfunctiondropdown.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/__pycache__/codefolding.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/__pycache__/codefolding.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/__pycache__/edgeline.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/__pycache__/edgeline.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/__pycache__/indentationguides.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/__pycache__/indentationguides.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/__pycache__/linenumber.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/__pycache__/linenumber.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/__pycache__/manager.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/__pycache__/manager.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/__pycache__/scrollflag.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/__pycache__/scrollflag.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/__pycache__/utils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/__pycache__/utils.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/classfunctiondropdown.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/codefolding.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/edgeline.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/indentationguides.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/linenumber.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/manager.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/scrollflag.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/panels/utils.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/__pycache__/autosave.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/__pycache__/autosave.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/__pycache__/bookmarks.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/__pycache__/bookmarks.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/__pycache__/decoration.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/__pycache__/decoration.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/__pycache__/editor.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/__pycache__/editor.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/__pycache__/findtasks.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/__pycache__/findtasks.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/__pycache__/kill_ring.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/__pycache__/kill_ring.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/__pycache__/languages.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/__pycache__/languages.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/__pycache__/switcher_manager.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/__pycache__/switcher_manager.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/autosave.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/bookmarks.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/decoration.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/editor.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/findtasks.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/kill_ring.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/languages.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/utils/switcher_manager.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/__pycache__/autosaveerror.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/__pycache__/autosaveerror.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/__pycache__/base.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/__pycache__/base.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/__pycache__/completion.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/__pycache__/completion.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/__pycache__/gotoline.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/__pycache__/gotoline.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/__pycache__/main_widget.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/__pycache__/main_widget.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/__pycache__/recover.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/__pycache__/recover.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/__pycache__/splitter.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/__pycache__/splitter.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/__pycache__/status.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/__pycache__/status.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/__pycache__/tabswitcher.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/__pycache__/tabswitcher.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/__pycache__/window.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/__pycache__/window.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/autosaveerror.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/base.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/codeeditor /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/codeeditor/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/codeeditor/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/codeeditor/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/codeeditor/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/codeeditor/__pycache__/codeeditor.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/codeeditor/__pycache__/codeeditor.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/codeeditor/__pycache__/lsp_mixin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/codeeditor/__pycache__/lsp_mixin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/codeeditor/codeeditor.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/codeeditor/lsp_mixin.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/completion.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/editorstack /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/editorstack/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/editorstack/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/editorstack/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/editorstack/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/editorstack/__pycache__/editorstack.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/editorstack/__pycache__/editorstack.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/editorstack/__pycache__/helpers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/editorstack/__pycache__/helpers.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/editorstack/editorstack.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/editorstack/helpers.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/gotoline.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/main_widget.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/recover.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/splitter.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/status.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/tabswitcher.py /usr/lib/python3.11/site-packages/spyder/plugins/editor/widgets/window.py /usr/lib/python3.11/site-packages/spyder/plugins/explorer /usr/lib/python3.11/site-packages/spyder/plugins/explorer/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/explorer/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/explorer/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/explorer/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/explorer/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/explorer/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/explorer/__pycache__/confpage.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/explorer/__pycache__/confpage.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/explorer/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/explorer/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/explorer/api.py /usr/lib/python3.11/site-packages/spyder/plugins/explorer/confpage.py /usr/lib/python3.11/site-packages/spyder/plugins/explorer/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/explorer/widgets /usr/lib/python3.11/site-packages/spyder/plugins/explorer/widgets/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/explorer/widgets/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/explorer/widgets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/explorer/widgets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/explorer/widgets/__pycache__/explorer.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/explorer/widgets/__pycache__/explorer.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/explorer/widgets/__pycache__/fileassociations.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/explorer/widgets/__pycache__/fileassociations.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/explorer/widgets/__pycache__/main_widget.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/explorer/widgets/__pycache__/main_widget.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/explorer/widgets/__pycache__/utils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/explorer/widgets/__pycache__/utils.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/explorer/widgets/explorer.py /usr/lib/python3.11/site-packages/spyder/plugins/explorer/widgets/fileassociations.py /usr/lib/python3.11/site-packages/spyder/plugins/explorer/widgets/main_widget.py /usr/lib/python3.11/site-packages/spyder/plugins/explorer/widgets/utils.py /usr/lib/python3.11/site-packages/spyder/plugins/externalterminal /usr/lib/python3.11/site-packages/spyder/plugins/externalterminal/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/externalterminal/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/externalterminal/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/externalterminal/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/externalterminal/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/externalterminal/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/externalterminal/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/externalterminal/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/externalterminal/api.py /usr/lib/python3.11/site-packages/spyder/plugins/externalterminal/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/externalterminal/widgets /usr/lib/python3.11/site-packages/spyder/plugins/externalterminal/widgets/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/externalterminal/widgets/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/externalterminal/widgets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/externalterminal/widgets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/externalterminal/widgets/__pycache__/run_conf.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/externalterminal/widgets/__pycache__/run_conf.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/externalterminal/widgets/run_conf.py /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/api.py /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/widgets /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/widgets/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/widgets/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/widgets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/widgets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/widgets/__pycache__/combobox.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/widgets/__pycache__/combobox.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/widgets/__pycache__/main_widget.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/widgets/__pycache__/main_widget.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/widgets/__pycache__/results_browser.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/widgets/__pycache__/results_browser.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/widgets/__pycache__/search_thread.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/widgets/__pycache__/search_thread.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/widgets/combobox.py /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/widgets/main_widget.py /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/widgets/results_browser.py /usr/lib/python3.11/site-packages/spyder/plugins/findinfiles/widgets/search_thread.py /usr/lib/python3.11/site-packages/spyder/plugins/help /usr/lib/python3.11/site-packages/spyder/plugins/help/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/help/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/help/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/help/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/help/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/help/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/help/__pycache__/confpage.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/help/__pycache__/confpage.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/help/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/help/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/help/__pycache__/widgets.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/help/__pycache__/widgets.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/help/api.py /usr/lib/python3.11/site-packages/spyder/plugins/help/confpage.py /usr/lib/python3.11/site-packages/spyder/plugins/help/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/help/utils /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/LICENSE.txt /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/__pycache__/conf.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/__pycache__/conf.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/__pycache__/sphinxify.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/__pycache__/sphinxify.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/__pycache__/sphinxthread.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/__pycache__/sphinxthread.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/conf.py /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/collapse_sections.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/copy_button.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/fix_image_paths.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/jquery.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/math_config.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/LICENSE.txt /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/MathJax.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/AM_CHTML-full.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/AM_CHTML.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/AM_HTMLorMML-full.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/AM_HTMLorMML.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/AM_SVG-full.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/AM_SVG.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/Accessible-full.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/Accessible.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/MML_CHTML-full.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/MML_CHTML.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/MML_HTMLorMML-full.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/MML_HTMLorMML.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/MML_SVG-full.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/MML_SVG.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/MMLorHTML.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/Safe.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/TeX-AMS-MML_HTMLorMML-full.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/TeX-AMS-MML_HTMLorMML.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/TeX-AMS-MML_SVG-full.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/TeX-AMS-MML_SVG.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/TeX-AMS_CHTML-full.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/TeX-AMS_CHTML.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/TeX-AMS_HTML-full.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/TeX-AMS_HTML.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/TeX-AMS_SVG-full.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/TeX-AMS_SVG.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/TeX-MML-AM_CHTML-full.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/TeX-MML-AM_CHTML.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/TeX-MML-AM_HTMLorMML-full.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/TeX-MML-AM_HTMLorMML.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/TeX-MML-AM_SVG-full.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/TeX-MML-AM_SVG.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/default.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/local /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/config/local/local.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/AssistiveMML.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/CHTML-preview.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/FontWarnings.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/HTML-CSS /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/HTML-CSS/handle-floats.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/HelpDialog.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/MatchWebFonts.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/MathEvents.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/MathML /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/MathML/content-mathml.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/MathML/mml3.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/MathMenu.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/MathZoom.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/Safe.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/TeX /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/TeX/AMScd.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/TeX/AMSmath.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/TeX/AMSsymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/TeX/HTML.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/TeX/action.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/TeX/autobold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/TeX/autoload-all.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/TeX/bbox.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/TeX/begingroup.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/TeX/boldsymbol.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/TeX/cancel.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/TeX/color.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/TeX/enclose.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/TeX/extpfeil.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/TeX/mathchoice.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/TeX/mediawiki-texvc.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/TeX/mhchem.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/TeX/mhchem3 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/TeX/mhchem3/mhchem.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/TeX/newcommand.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/TeX/noErrors.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/TeX/noUndefined.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/TeX/unicode.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/TeX/verb.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/accessibility-menu.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/auto-collapse.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/collapsible.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/explorer.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/invalid_keypress.mp3 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/invalid_keypress.ogg /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathjax-sre.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/functions /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/functions/algebra.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/functions/elementary.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/functions/hyperbolic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/functions/trigonometry.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/greek-capital.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/greek-mathfonts-bold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/greek-mathfonts-italic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/greek-mathfonts-sans-serif-bold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/greek-scripts.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/greek-small.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/greek-symbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/hebrew_letters.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/latin-lower-double-accent.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/latin-lower-normal.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/latin-lower-phonetic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/latin-lower-single-accent.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-bold-fraktur.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-bold-script.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-bold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-double-struck.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-fraktur.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-italic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-monospace.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-sans-serif-bold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-sans-serif-italic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-sans-serif.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/latin-mathfonts-script.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/latin-rest.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/latin-upper-double-accent.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/latin-upper-normal.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/latin-upper-single-accent.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/math_angles.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/math_arrows.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/math_characters.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/math_delimiters.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/math_digits.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/math_geometry.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/math_harpoons.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/math_non_characters.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/math_symbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/math_whitespace.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/symbols/other_stars.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/units /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/units/energy.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/units/length.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/units/memory.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/units/other.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/units/speed.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/units/temperature.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/units/time.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/units/volume.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/en/units/weight.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/functions /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/functions/algebra.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/functions/elementary.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/functions/hyperbolic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/functions/trigonometry.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/greek-capital.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/greek-mathfonts-bold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/greek-mathfonts-italic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/greek-mathfonts-sans-serif-bold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/greek-scripts.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/greek-small.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/greek-symbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/hebrew_letters.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/latin-lower-double-accent.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/latin-lower-normal.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/latin-lower-phonetic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/latin-lower-single-accent.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-bold-fraktur.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-bold-script.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-bold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-double-struck.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-fraktur.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-italic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-monospace.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-sans-serif-bold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-sans-serif-italic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-sans-serif.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/latin-mathfonts-script.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/latin-rest.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/latin-upper-double-accent.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/latin-upper-normal.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/latin-upper-single-accent.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/math_angles.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/math_arrows.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/math_characters.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/math_delimiters.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/math_digits.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/math_geometry.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/math_harpoons.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/math_non_characters.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/math_symbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/math_whitespace.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/symbols/other_stars.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/units /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/units/energy.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/units/length.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/units/memory.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/units/other.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/units/speed.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/units/temperature.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/units/time.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/units/volume.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/es/units/weight.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/mathmaps/mathmaps_ie.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/semantic-enrich.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/a11y/wgxpath.install.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/asciimath2jax.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/fast-preview.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/jsMath2jax.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/mml2jax.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/tex2jax.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/extensions/toMathML.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/images /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/images/CloseX-31.png /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/images/MenuArrow-15.png /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/element /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/element/mml /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/element/mml/jax.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/element/mml/optable /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/element/mml/optable/Arrows.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/element/mml/optable/BasicLatin.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/element/mml/optable/CombDiacritMarks.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/element/mml/optable/CombDiactForSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/element/mml/optable/Dingbats.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/element/mml/optable/GeneralPunctuation.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/element/mml/optable/GeometricShapes.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/element/mml/optable/GreekAndCoptic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/element/mml/optable/Latin1Supplement.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/element/mml/optable/LetterlikeSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/element/mml/optable/MathOperators.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/element/mml/optable/MiscMathSymbolsA.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/element/mml/optable/MiscMathSymbolsB.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/element/mml/optable/MiscSymbolsAndArrows.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/element/mml/optable/MiscTechnical.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/element/mml/optable/SpacingModLetters.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/element/mml/optable/SuppMathOperators.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/element/mml/optable/SupplementalArrowsA.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/element/mml/optable/SupplementalArrowsB.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/AsciiMath /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/AsciiMath/config.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/AsciiMath/jax.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/config.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/a.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/b.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/c.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/d.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/e.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/f.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/fr.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/g.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/h.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/i.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/j.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/k.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/l.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/m.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/n.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/o.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/opf.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/p.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/q.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/r.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/s.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/scr.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/t.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/u.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/v.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/w.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/x.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/y.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/entities/z.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/MathML/jax.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/TeX /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/TeX/config.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/input/TeX/jax.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML/autoload /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML/autoload/annotation-xml.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML/autoload/maction.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML/autoload/menclose.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML/autoload/mglyph.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML/autoload/mmultiscripts.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML/autoload/ms.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML/autoload/mtable.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML/autoload/multiline.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML/config.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML/fonts /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML/fonts/TeX /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML/fonts/TeX/AMS-Regular.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML/fonts/TeX/Caligraphic-Bold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML/fonts/TeX/Fraktur-Bold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML/fonts/TeX/Fraktur-Regular.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML/fonts/TeX/Main-Bold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML/fonts/TeX/Math-BoldItalic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML/fonts/TeX/SansSerif-Bold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML/fonts/TeX/SansSerif-Italic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML/fonts/TeX/SansSerif-Regular.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML/fonts/TeX/Script-Regular.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML/fonts/TeX/Typewriter-Regular.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML/fonts/TeX/fontdata-extra.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML/fonts/TeX/fontdata.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/CommonHTML/jax.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/autoload /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/autoload/annotation-xml.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/autoload/maction.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/autoload/menclose.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/autoload/mglyph.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/autoload/mmultiscripts.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/autoload/ms.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/autoload/mtable.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/autoload/multiline.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/config.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Alphabets /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Alphabets/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Alphabets/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Arrows /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Arrows/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Arrows/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/DoubleStruck /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/DoubleStruck/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/DoubleStruck/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Fraktur /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Fraktur/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Fraktur/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Latin /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Latin/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Latin/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Main /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Main/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Main/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Marks /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Marks/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Marks/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Misc /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Misc/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Misc/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Monospace /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Monospace/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Monospace/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/NonUnicode /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/NonUnicode/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/NonUnicode/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Normal /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Normal/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Normal/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Operators /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Operators/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Operators/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/SansSerif /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/SansSerif/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/SansSerif/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Script /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Script/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Script/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Shapes /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Shapes/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Shapes/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Size1 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Size1/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Size1/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Size2 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Size2/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Size2/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Size3 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Size3/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Size3/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Size4 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Size4/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Size4/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Size5 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Size5/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Size5/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Size6 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Size6/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Size6/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Symbols /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Symbols/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Symbols/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Variants /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Variants/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/Variants/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/fontdata-extra.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Asana-Math/fontdata.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Alphabets /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Alphabets/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Alphabets/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Arrows /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Arrows/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Arrows/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/DoubleStruck /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/DoubleStruck/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/DoubleStruck/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Fraktur /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Fraktur/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Fraktur/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Latin /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Latin/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Latin/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Main /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Main/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Main/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Marks /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Marks/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Marks/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Misc /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Misc/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Misc/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Monospace /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Monospace/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Monospace/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/NonUnicode /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/NonUnicode/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/NonUnicode/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Normal /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Normal/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Normal/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Operators /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Operators/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Operators/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/SansSerif /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/SansSerif/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/SansSerif/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Script /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Script/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Script/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Shapes /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Shapes/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Shapes/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size1 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size1/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size1/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size2 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size2/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size2/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size3 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size3/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size3/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size4 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size4/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size4/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size5 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size5/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size5/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size6 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size6/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size6/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Symbols /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Symbols/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Symbols/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Variants /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Variants/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Variants/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/fontdata-extra.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Pagella/fontdata.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Alphabets /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Alphabets/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Alphabets/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Arrows /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Arrows/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Arrows/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/DoubleStruck /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/DoubleStruck/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/DoubleStruck/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Fraktur /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Fraktur/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Fraktur/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Latin /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Latin/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Latin/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Main /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Main/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Main/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Marks /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Marks/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Marks/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Misc /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Misc/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Misc/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Monospace /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Monospace/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Monospace/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/NonUnicode /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/NonUnicode/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/NonUnicode/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Normal /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Normal/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Normal/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Operators /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Operators/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Operators/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/SansSerif /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/SansSerif/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/SansSerif/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Script /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Script/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Script/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Shapes /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Shapes/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Shapes/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Size1 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Size1/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Size1/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Size2 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Size2/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Size2/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Size3 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Size3/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Size3/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Size4 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Size4/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Size4/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Size5 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Size5/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Size5/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Size6 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Size6/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Size6/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Symbols /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Symbols/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Symbols/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Variants /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Variants/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/Variants/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/fontdata-extra.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Gyre-Termes/fontdata.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Alphabets /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Alphabets/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Alphabets/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Arrows /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Arrows/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Arrows/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/DoubleStruck /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/DoubleStruck/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/DoubleStruck/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Fraktur /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Fraktur/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Fraktur/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Latin /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Latin/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Latin/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Main /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Main/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Main/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Marks /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Marks/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Marks/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Misc /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Misc/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Misc/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Monospace /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Monospace/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Monospace/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/NonUnicode /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/NonUnicode/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/NonUnicode/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Normal /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Normal/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Normal/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Operators /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Operators/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Operators/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/SansSerif /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/SansSerif/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/SansSerif/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Script /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Script/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Script/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Shapes /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Shapes/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Shapes/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Size1 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Size1/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Size1/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Size2 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Size2/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Size2/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Size3 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Size3/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Size3/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Size4 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Size4/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Size4/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Size5 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Size5/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Size5/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Size6 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Size6/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Size6/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Size7 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Size7/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Size7/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Symbols /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Symbols/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Symbols/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Variants /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Variants/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/Variants/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/fontdata-extra.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Latin-Modern/fontdata.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Alphabets /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Alphabets/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Alphabets/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Arrows /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Arrows/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Arrows/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Fraktur /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Fraktur/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Fraktur/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Main /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Main/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Main/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Marks /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Marks/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Marks/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/NonUnicode /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/NonUnicode/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/NonUnicode/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Normal /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Normal/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Normal/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Operators /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Operators/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Operators/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Script /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Script/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Script/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Shapes /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Shapes/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Shapes/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Size1 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Size1/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Size1/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Size2 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Size2/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Size2/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Size3 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Size3/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Size3/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Size4 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Size4/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Size4/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Size5 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Size5/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Size5/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Symbols /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Symbols/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Symbols/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Variants /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Variants/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Variants/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/fontdata-extra.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/fontdata.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Arrows /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Arrows/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Arrows/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Arrows/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Arrows/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Fraktur /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Fraktur/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Fraktur/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Fraktur/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Fraktur/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Latin /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Latin/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Latin/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Main /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Main/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Main/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Main/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Main/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Main/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Main/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Main/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Main/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Marks /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Marks/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Marks/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Misc /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Misc/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Misc/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Monospace /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Monospace/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Monospace/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Normal /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Normal/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Normal/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Normal/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Normal/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Normal/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Normal/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Operators /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Operators/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Operators/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Operators/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Operators/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Script /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Script/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Script/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Script/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Script/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Script/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Script/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Shapes /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Size1 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Size1/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Size1/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Size2 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Size2/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Size2/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Size3 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Size3/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Size3/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Size4 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Size4/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Size4/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Size5 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Size5/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Size5/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Symbols /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Symbols/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Symbols/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Symbols/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Symbols/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Variants /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Variants/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Variants/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/fontdata-extra.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX-Web/fontdata.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/AlphaPresentForms.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Arrows.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/BBBold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoldFraktur.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoxDrawing.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiacritMarks.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiactForSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Cyrillic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/EnclosedAlphanum.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeneralPunctuation.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekAndCoptic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekBold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekSSBold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/IPAExtensions.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Latin1Supplement.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedA.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedAdditional.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedB.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedD.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LetterlikeSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathBold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathOperators.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathSSBold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsA.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsB.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscTechnical.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/NumberForms.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/PhoneticExtensions.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/SpacingModLetters.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuppMathOperators.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BasicLatin.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BoxDrawing.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Cyrillic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/EnclosedAlphanum.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GeneralPunctuation.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekAndCoptic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekBoldItalic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekSSBoldItalic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/IPAExtensions.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Latin1Supplement.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedA.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedAdditional.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedB.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LetterlikeSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldItalic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldScript.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathSSItalicBold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/SpacingModLetters.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/BoxDrawing.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/CombDiactForSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/Cyrillic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/EnclosedAlphanum.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/GeneralPunctuation.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekAndCoptic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekItalic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/IPAExtensions.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/Latin1Supplement.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedA.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedAdditional.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedB.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/LetterlikeSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathItalic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathSSItalic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathScript.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/SpacingModLetters.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Arrows.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BBBold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BlockElements.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoldFraktur.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoxDrawing.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiacritMarks.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiactForSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Cyrillic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Dingbats.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/EnclosedAlphanum.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Fraktur.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeneralPunctuation.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeometricShapes.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekAndCoptic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBoldItalic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekItalic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBoldItalic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/IPAExtensions.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Latin1Supplement.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedA.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedAdditional.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedB.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LetterlikeSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldItalic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldScript.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathItalic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathOperators.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSS.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSBold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalicBold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathScript.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathTT.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsA.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsB.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbolsAndArrows.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscTechnical.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/NumberForms.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/PhoneticExtensions.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SpacingModLetters.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuppMathOperators.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsA.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsB.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsD /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Bold/All.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/All.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Bold/All.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/All.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Bold/All.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/All.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Bold/All.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/All.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Bold/All.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/All.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/PrivateUse.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/PrivateUse.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/PrivateUse.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/PrivateUse.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/All.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/All.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/All.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/All.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/All.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/Variants /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/Variants/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/All.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/Variants/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/All.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/fontdata-1.0.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/fontdata-beta.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/fontdata-extra.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/STIX/fontdata.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Arrows.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BBBold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MathOperators.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/PUA.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SuppMathOperators.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Caligraphic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/BasicLatin.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/BasicLatin.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Arrows.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiacritMarks.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeneralPunctuation.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MathOperators.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SpacingModLetters.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/CombDiacritMarks.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiacritMarks.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Math /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Math/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Math/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Math/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Math/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/BasicLatin.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Other.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/BasicLatin.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Other.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/BasicLatin.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Other.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Script /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Script/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/BasicLatin.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Size1 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Size1/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Size1/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Size2 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Size2/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Size2/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Size3 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Size3/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Size3/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Size4 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Size4/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Size4/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Typewriter /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/BasicLatin.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Other.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/WinChrome /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/WinChrome/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/WinChrome/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/WinIE6 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/fontdata-extra.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/fonts/TeX/fontdata.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/imageFonts.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/HTML-CSS/jax.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/NativeMML /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/NativeMML/config.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/NativeMML/jax.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/PlainSource /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/PlainSource/config.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/PlainSource/jax.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/PreviewHTML /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/PreviewHTML/config.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/PreviewHTML/jax.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/autoload /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/autoload/annotation-xml.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/autoload/maction.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/autoload/menclose.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/autoload/mglyph.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/autoload/mmultiscripts.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/autoload/ms.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/autoload/mtable.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/autoload/multiline.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/config.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Alphabets /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Alphabets/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Alphabets/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Arrows /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Arrows/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Arrows/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/DoubleStruck /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/DoubleStruck/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/DoubleStruck/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Fraktur /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Fraktur/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Fraktur/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Latin /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Latin/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Latin/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Main /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Main/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Main/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Marks /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Marks/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Marks/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Misc /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Misc/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Misc/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Monospace /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Monospace/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Monospace/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/NonUnicode /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/NonUnicode/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/NonUnicode/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Normal /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Normal/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Normal/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Operators /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Operators/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Operators/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/SansSerif /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/SansSerif/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/SansSerif/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Script /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Script/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Script/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Shapes /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Shapes/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Shapes/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Size1 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Size1/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Size1/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Size2 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Size2/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Size2/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Size3 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Size3/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Size3/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Size4 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Size4/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Size4/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Size5 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Size5/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Size5/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Size6 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Size6/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Size6/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Symbols /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Symbols/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Symbols/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Variants /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Variants/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/Variants/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/fontdata-extra.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Asana-Math/fontdata.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Alphabets /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Alphabets/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Alphabets/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Arrows /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Arrows/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Arrows/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/DoubleStruck /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/DoubleStruck/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/DoubleStruck/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Fraktur /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Fraktur/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Fraktur/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Latin /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Latin/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Latin/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Main /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Main/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Main/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Marks /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Marks/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Marks/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Misc /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Misc/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Misc/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Monospace /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Monospace/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Monospace/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/NonUnicode /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/NonUnicode/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/NonUnicode/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Normal /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Normal/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Normal/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Operators /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Operators/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Operators/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/SansSerif /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/SansSerif/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/SansSerif/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Script /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Script/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Script/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Shapes /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Shapes/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Shapes/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Size1 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Size1/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Size1/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Size2 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Size2/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Size2/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Size3 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Size3/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Size3/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Size4 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Size4/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Size4/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Size5 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Size5/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Size5/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Size6 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Size6/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Size6/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Symbols /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Symbols/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Symbols/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Variants /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Variants/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/Variants/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/fontdata-extra.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Pagella/fontdata.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Alphabets /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Alphabets/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Alphabets/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Arrows /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Arrows/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Arrows/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/DoubleStruck /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/DoubleStruck/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/DoubleStruck/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Fraktur /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Fraktur/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Fraktur/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Latin /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Latin/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Latin/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Main /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Main/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Main/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Marks /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Marks/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Marks/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Misc /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Misc/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Misc/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Monospace /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Monospace/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Monospace/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/NonUnicode /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/NonUnicode/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/NonUnicode/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Normal /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Normal/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Normal/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Operators /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Operators/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Operators/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/SansSerif /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/SansSerif/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/SansSerif/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Script /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Script/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Script/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Shapes /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Shapes/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Shapes/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Size1 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Size1/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Size1/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Size2 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Size2/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Size2/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Size3 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Size3/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Size3/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Size4 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Size4/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Size4/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Size5 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Size5/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Size5/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Size6 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Size6/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Size6/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Symbols /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Symbols/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Symbols/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Variants /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Variants/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/Variants/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/fontdata-extra.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Gyre-Termes/fontdata.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Alphabets /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Alphabets/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Alphabets/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Arrows /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Arrows/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Arrows/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/DoubleStruck /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/DoubleStruck/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/DoubleStruck/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Fraktur /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Fraktur/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Fraktur/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Latin /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Latin/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Latin/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Main /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Main/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Main/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Marks /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Marks/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Marks/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Misc /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Misc/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Misc/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Monospace /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Monospace/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Monospace/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/NonUnicode /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/NonUnicode/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/NonUnicode/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Normal /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Normal/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Normal/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Operators /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Operators/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Operators/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/SansSerif /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/SansSerif/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/SansSerif/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Script /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Script/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Script/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Shapes /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Shapes/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Shapes/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Size1 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Size1/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Size1/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Size2 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Size2/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Size2/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Size3 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Size3/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Size3/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Size4 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Size4/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Size4/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Size5 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Size5/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Size5/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Size6 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Size6/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Size6/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Size7 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Size7/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Size7/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Symbols /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Symbols/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Symbols/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Variants /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Variants/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/Variants/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/fontdata-extra.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Latin-Modern/fontdata.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Alphabets /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Alphabets/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Alphabets/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Arrows /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Arrows/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Arrows/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Fraktur /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Fraktur/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Fraktur/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Main /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Main/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Main/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Marks /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Marks/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Marks/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/NonUnicode /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/NonUnicode/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/NonUnicode/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Normal /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Normal/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Normal/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Operators /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Operators/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Operators/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Script /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Script/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Script/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Shapes /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Shapes/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Shapes/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Size1 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Size1/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Size1/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Size2 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Size2/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Size2/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Size3 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Size3/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Size3/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Size4 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Size4/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Size4/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Size5 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Size5/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Size5/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Symbols /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Symbols/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Symbols/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Variants /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Variants/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/Variants/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/fontdata-extra.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/Neo-Euler/fontdata.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Alphabets /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Alphabets/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Alphabets/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Alphabets/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Alphabets/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Alphabets/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Alphabets/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Alphabets/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Alphabets/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Arrows /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Arrows/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Arrows/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Arrows/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Arrows/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/DoubleStruck /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/DoubleStruck/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/DoubleStruck/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Fraktur /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Fraktur/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Fraktur/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Fraktur/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Fraktur/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Latin /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Latin/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Latin/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Latin/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Latin/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Latin/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Latin/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Latin/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Latin/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Main /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Main/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Main/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Main/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Main/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Main/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Main/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Main/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Main/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Marks /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Marks/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Marks/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Marks/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Marks/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Marks/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Marks/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Marks/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Marks/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Misc /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Misc/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Misc/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Misc/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Misc/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Misc/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Misc/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Misc/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Misc/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Monospace /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Monospace/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Monospace/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Normal /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Normal/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Normal/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Normal/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Normal/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Normal/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Normal/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Operators /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Operators/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Operators/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Operators/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Operators/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/SansSerif /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/SansSerif/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/SansSerif/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/SansSerif/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/SansSerif/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/SansSerif/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/SansSerif/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/SansSerif/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/SansSerif/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Script /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Script/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Script/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Script/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Script/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Script/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Script/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Shapes /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Shapes/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Shapes/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Shapes/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Shapes/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Shapes/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Shapes/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Size1 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Size1/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Size1/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Size2 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Size2/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Size2/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Size3 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Size3/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Size3/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Size4 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Size4/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Size4/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Size5 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Size5/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Size5/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Symbols /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Symbols/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Symbols/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Symbols/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Symbols/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Variants /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Variants/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Variants/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Variants/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Variants/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Variants/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Variants/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Variants/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/Variants/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/fontdata-extra.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/STIX-Web/fontdata.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/AMS /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/Arrows.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/BoxDrawing.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/CombDiacritMarks.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/Dingbats.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/EnclosedAlphanum.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/GeometricShapes.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/GreekAndCoptic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/Latin1Supplement.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/LatinExtendedA.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/LetterlikeSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/MathOperators.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscTechnical.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/PUA.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/SpacingModLetters.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/SuppMathOperators.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Caligraphic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Caligraphic/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Caligraphic/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Caligraphic/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Caligraphic/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Fraktur /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Bold/BasicLatin.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Bold/Other.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Bold/PUA.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Regular/BasicLatin.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Regular/Other.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Regular/PUA.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/Arrows.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/BasicLatin.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/CombDiacritMarks.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/CombDiactForSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/GeneralPunctuation.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/GeometricShapes.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/GreekAndCoptic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/Latin1Supplement.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedA.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedB.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/LetterlikeSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/MathOperators.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/MiscMathSymbolsA.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/MiscSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/MiscTechnical.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/SpacingModLetters.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/SuppMathOperators.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/SupplementalArrowsA.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/BasicLatin.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/CombDiacritMarks.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/GeneralPunctuation.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/GreekAndCoptic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedA.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedB.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/LetterlikeSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/MathOperators.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/BasicLatin.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/CombDiacritMarks.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/GeometricShapes.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/GreekAndCoptic.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedA.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedB.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/LetterlikeSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/MathOperators.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/MiscSymbols.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/SpacingModLetters.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/SuppMathOperators.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Math /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Math/BoldItalic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Math/BoldItalic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Math/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Math/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Bold /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Bold/BasicLatin.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Bold/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Bold/Other.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Italic /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Italic/BasicLatin.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Italic/Other.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Regular/BasicLatin.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Regular/Other.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Script /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Script/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Script/Regular/BasicLatin.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Script/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Size1 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Size1/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Size1/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Size2 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Size2/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Size2/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Size3 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Size3/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Size3/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Size4 /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Size4/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Size4/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Typewriter /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Typewriter/Regular /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Typewriter/Regular/BasicLatin.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/Typewriter/Regular/Other.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/fontdata-extra.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/fonts/TeX/fontdata.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/mathjax/jax/output/SVG/jax.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/move_outline.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/js/utils.js /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/sphinxify.py /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/sphinxthread.py /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static/base_css /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static/base_css/base.css /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static/css /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static/css/default.css /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static/css/pygments.css /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static/dark_css /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static/dark_css/default.css /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static/dark_css/pygments.css /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static/images /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static/images/collapse_expand.png /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static/images/collapse_expand_dark.png /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static/images/debug-continue.png /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static/images/debug-step-in.png /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static/images/debug-step-out.png /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static/images/debug-step-over.png /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static/images/down_arrow.png /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static/images/down_arrow_disabled.png /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static/images/down_arrow_disabled_horizontal.png /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static/images/down_arrow_horizontal.png /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static/images/spyder-hello-docstring.png /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static/images/spyder-nice-docstring-rendering.png /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static/images/spyder-sympy-example.png /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static/images/up_arrow.png /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static/images/up_arrow_disabled.png /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static/images/up_arrow_disabled_horizontal.png /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/static/images/up_arrow_horizontal.png /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/templates /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/templates/layout.html /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/templates/loading.html /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/templates/usage.html /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/templates/warning.html /usr/lib/python3.11/site-packages/spyder/plugins/help/utils/tutorial.rst /usr/lib/python3.11/site-packages/spyder/plugins/help/widgets.py /usr/lib/python3.11/site-packages/spyder/plugins/history /usr/lib/python3.11/site-packages/spyder/plugins/history/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/history/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/history/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/history/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/history/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/history/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/history/__pycache__/confpage.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/history/__pycache__/confpage.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/history/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/history/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/history/__pycache__/widgets.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/history/__pycache__/widgets.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/history/api.py /usr/lib/python3.11/site-packages/spyder/plugins/history/confpage.py /usr/lib/python3.11/site-packages/spyder/plugins/history/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/history/widgets.py /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/__pycache__/confpage.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/__pycache__/confpage.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/api.py /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/assets /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/assets/templates /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/assets/templates/blank.html /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/assets/templates/kernel_error.html /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/assets/templates/loading.html /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/comms /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/comms/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/comms/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/comms/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/comms/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/comms/__pycache__/kernelcomm.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/comms/__pycache__/kernelcomm.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/comms/kernelcomm.py /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/confpage.py /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/utils /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/utils/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/utils/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/utils/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/utils/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/utils/__pycache__/client.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/utils/__pycache__/client.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/utils/__pycache__/kernel_handler.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/utils/__pycache__/kernel_handler.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/utils/__pycache__/kernelspec.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/utils/__pycache__/kernelspec.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/utils/__pycache__/manager.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/utils/__pycache__/manager.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/utils/__pycache__/style.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/utils/__pycache__/style.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/utils/client.py /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/utils/kernel_handler.py /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/utils/kernelspec.py /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/utils/manager.py /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/utils/style.py /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/client.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/client.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/control.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/control.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/debugging.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/debugging.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/figurebrowser.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/figurebrowser.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/help.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/help.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/kernelconnect.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/kernelconnect.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/main_widget.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/main_widget.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/mixins.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/mixins.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/namespacebrowser.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/namespacebrowser.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/restartdialog.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/restartdialog.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/run_conf.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/run_conf.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/shell.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/shell.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/status.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/__pycache__/status.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/client.py /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/control.py /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/debugging.py /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/figurebrowser.py /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/help.py /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/kernelconnect.py /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/main_widget.py /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/mixins.py /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/namespacebrowser.py /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/restartdialog.py /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/run_conf.py /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/shell.py /usr/lib/python3.11/site-packages/spyder/plugins/ipythonconsole/widgets/status.py /usr/lib/python3.11/site-packages/spyder/plugins/layout /usr/lib/python3.11/site-packages/spyder/plugins/layout/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/layout/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/layout/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/layout/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/layout/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/layout/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/layout/__pycache__/container.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/layout/__pycache__/container.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/layout/__pycache__/layouts.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/layout/__pycache__/layouts.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/layout/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/layout/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/layout/api.py /usr/lib/python3.11/site-packages/spyder/plugins/layout/container.py /usr/lib/python3.11/site-packages/spyder/plugins/layout/layouts.py /usr/lib/python3.11/site-packages/spyder/plugins/layout/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/layout/widgets /usr/lib/python3.11/site-packages/spyder/plugins/layout/widgets/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/layout/widgets/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/layout/widgets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/layout/widgets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/layout/widgets/__pycache__/dialog.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/layout/widgets/__pycache__/dialog.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/layout/widgets/dialog.py /usr/lib/python3.11/site-packages/spyder/plugins/maininterpreter /usr/lib/python3.11/site-packages/spyder/plugins/maininterpreter/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/maininterpreter/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/maininterpreter/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/maininterpreter/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/maininterpreter/__pycache__/confpage.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/maininterpreter/__pycache__/confpage.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/maininterpreter/__pycache__/container.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/maininterpreter/__pycache__/container.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/maininterpreter/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/maininterpreter/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/maininterpreter/confpage.py /usr/lib/python3.11/site-packages/spyder/plugins/maininterpreter/container.py /usr/lib/python3.11/site-packages/spyder/plugins/maininterpreter/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/mainmenu /usr/lib/python3.11/site-packages/spyder/plugins/mainmenu/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/mainmenu/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/mainmenu/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/mainmenu/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/mainmenu/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/mainmenu/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/mainmenu/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/mainmenu/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/mainmenu/api.py /usr/lib/python3.11/site-packages/spyder/plugins/mainmenu/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/onlinehelp /usr/lib/python3.11/site-packages/spyder/plugins/onlinehelp/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/onlinehelp/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/onlinehelp/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/onlinehelp/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/onlinehelp/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/onlinehelp/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/onlinehelp/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/onlinehelp/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/onlinehelp/__pycache__/pydoc_patch.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/onlinehelp/__pycache__/pydoc_patch.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/onlinehelp/__pycache__/widgets.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/onlinehelp/__pycache__/widgets.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/onlinehelp/api.py /usr/lib/python3.11/site-packages/spyder/plugins/onlinehelp/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/onlinehelp/pydoc_patch.py /usr/lib/python3.11/site-packages/spyder/plugins/onlinehelp/static /usr/lib/python3.11/site-packages/spyder/plugins/onlinehelp/static/css /usr/lib/python3.11/site-packages/spyder/plugins/onlinehelp/static/css/dark_pydoc.css /usr/lib/python3.11/site-packages/spyder/plugins/onlinehelp/static/css/light_pydoc.css /usr/lib/python3.11/site-packages/spyder/plugins/onlinehelp/widgets.py /usr/lib/python3.11/site-packages/spyder/plugins/outlineexplorer /usr/lib/python3.11/site-packages/spyder/plugins/outlineexplorer/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/outlineexplorer/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/outlineexplorer/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/outlineexplorer/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/outlineexplorer/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/outlineexplorer/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/outlineexplorer/__pycache__/editor.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/outlineexplorer/__pycache__/editor.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/outlineexplorer/__pycache__/main_widget.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/outlineexplorer/__pycache__/main_widget.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/outlineexplorer/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/outlineexplorer/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/outlineexplorer/__pycache__/widgets.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/outlineexplorer/__pycache__/widgets.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/outlineexplorer/api.py /usr/lib/python3.11/site-packages/spyder/plugins/outlineexplorer/editor.py /usr/lib/python3.11/site-packages/spyder/plugins/outlineexplorer/main_widget.py /usr/lib/python3.11/site-packages/spyder/plugins/outlineexplorer/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/outlineexplorer/widgets.py /usr/lib/python3.11/site-packages/spyder/plugins/plots /usr/lib/python3.11/site-packages/spyder/plugins/plots/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/plots/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/plots/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/plots/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/plots/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/plots/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/plots/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/plots/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/plots/api.py /usr/lib/python3.11/site-packages/spyder/plugins/plots/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/plots/widgets /usr/lib/python3.11/site-packages/spyder/plugins/plots/widgets/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/plots/widgets/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/plots/widgets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/plots/widgets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/plots/widgets/__pycache__/figurebrowser.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/plots/widgets/__pycache__/figurebrowser.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/plots/widgets/__pycache__/main_widget.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/plots/widgets/__pycache__/main_widget.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/plots/widgets/figurebrowser.py /usr/lib/python3.11/site-packages/spyder/plugins/plots/widgets/main_widget.py /usr/lib/python3.11/site-packages/spyder/plugins/preferences /usr/lib/python3.11/site-packages/spyder/plugins/preferences/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/preferences/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/preferences/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/preferences/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/preferences/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/preferences/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/preferences/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/preferences/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/preferences/api.py /usr/lib/python3.11/site-packages/spyder/plugins/preferences/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/preferences/widgets /usr/lib/python3.11/site-packages/spyder/plugins/preferences/widgets/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/preferences/widgets/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/preferences/widgets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/preferences/widgets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/preferences/widgets/__pycache__/configdialog.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/preferences/widgets/__pycache__/configdialog.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/preferences/widgets/__pycache__/container.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/preferences/widgets/__pycache__/container.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/preferences/widgets/configdialog.py /usr/lib/python3.11/site-packages/spyder/plugins/preferences/widgets/container.py /usr/lib/python3.11/site-packages/spyder/plugins/profiler /usr/lib/python3.11/site-packages/spyder/plugins/profiler/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/profiler/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/profiler/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/profiler/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/profiler/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/profiler/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/profiler/__pycache__/confpage.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/profiler/__pycache__/confpage.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/profiler/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/profiler/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/profiler/api.py /usr/lib/python3.11/site-packages/spyder/plugins/profiler/confpage.py /usr/lib/python3.11/site-packages/spyder/plugins/profiler/images /usr/lib/python3.11/site-packages/spyder/plugins/profiler/images/profiler.png /usr/lib/python3.11/site-packages/spyder/plugins/profiler/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/profiler/widgets /usr/lib/python3.11/site-packages/spyder/plugins/profiler/widgets/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/profiler/widgets/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/profiler/widgets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/profiler/widgets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/profiler/widgets/__pycache__/main_widget.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/profiler/widgets/__pycache__/main_widget.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/profiler/widgets/__pycache__/run_conf.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/profiler/widgets/__pycache__/run_conf.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/profiler/widgets/main_widget.py /usr/lib/python3.11/site-packages/spyder/plugins/profiler/widgets/run_conf.py /usr/lib/python3.11/site-packages/spyder/plugins/projects /usr/lib/python3.11/site-packages/spyder/plugins/projects/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/projects/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/projects/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/projects/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/projects/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/projects/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/projects/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/projects/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/projects/api.py /usr/lib/python3.11/site-packages/spyder/plugins/projects/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/projects/utils /usr/lib/python3.11/site-packages/spyder/plugins/projects/utils/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/projects/utils/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/projects/utils/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/projects/utils/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/projects/utils/__pycache__/config.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/projects/utils/__pycache__/config.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/projects/utils/__pycache__/cookie.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/projects/utils/__pycache__/cookie.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/projects/utils/__pycache__/watcher.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/projects/utils/__pycache__/watcher.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/projects/utils/config.py /usr/lib/python3.11/site-packages/spyder/plugins/projects/utils/cookie.py /usr/lib/python3.11/site-packages/spyder/plugins/projects/utils/watcher.py /usr/lib/python3.11/site-packages/spyder/plugins/projects/widgets /usr/lib/python3.11/site-packages/spyder/plugins/projects/widgets/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/projects/widgets/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/projects/widgets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/projects/widgets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/projects/widgets/__pycache__/main_widget.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/projects/widgets/__pycache__/main_widget.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/projects/widgets/__pycache__/projectdialog.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/projects/widgets/__pycache__/projectdialog.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/projects/widgets/__pycache__/projectexplorer.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/projects/widgets/__pycache__/projectexplorer.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/projects/widgets/__pycache__/qcookiecutter.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/projects/widgets/__pycache__/qcookiecutter.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/projects/widgets/main_widget.py /usr/lib/python3.11/site-packages/spyder/plugins/projects/widgets/projectdialog.py /usr/lib/python3.11/site-packages/spyder/plugins/projects/widgets/projectexplorer.py /usr/lib/python3.11/site-packages/spyder/plugins/projects/widgets/qcookiecutter.py /usr/lib/python3.11/site-packages/spyder/plugins/pylint /usr/lib/python3.11/site-packages/spyder/plugins/pylint/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/pylint/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/pylint/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/pylint/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/pylint/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/pylint/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/pylint/__pycache__/confpage.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/pylint/__pycache__/confpage.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/pylint/__pycache__/main_widget.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/pylint/__pycache__/main_widget.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/pylint/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/pylint/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/pylint/__pycache__/utils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/pylint/__pycache__/utils.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/pylint/api.py /usr/lib/python3.11/site-packages/spyder/plugins/pylint/confpage.py /usr/lib/python3.11/site-packages/spyder/plugins/pylint/images /usr/lib/python3.11/site-packages/spyder/plugins/pylint/images/pylint.png /usr/lib/python3.11/site-packages/spyder/plugins/pylint/main_widget.py /usr/lib/python3.11/site-packages/spyder/plugins/pylint/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/pylint/utils.py /usr/lib/python3.11/site-packages/spyder/plugins/pythonpath /usr/lib/python3.11/site-packages/spyder/plugins/pythonpath/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/pythonpath/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/pythonpath/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/pythonpath/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/pythonpath/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/pythonpath/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/pythonpath/__pycache__/container.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/pythonpath/__pycache__/container.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/pythonpath/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/pythonpath/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/pythonpath/__pycache__/utils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/pythonpath/__pycache__/utils.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/pythonpath/api.py /usr/lib/python3.11/site-packages/spyder/plugins/pythonpath/container.py /usr/lib/python3.11/site-packages/spyder/plugins/pythonpath/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/pythonpath/utils.py /usr/lib/python3.11/site-packages/spyder/plugins/pythonpath/widgets /usr/lib/python3.11/site-packages/spyder/plugins/pythonpath/widgets/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/pythonpath/widgets/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/pythonpath/widgets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/pythonpath/widgets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/pythonpath/widgets/__pycache__/pathmanager.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/pythonpath/widgets/__pycache__/pathmanager.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/pythonpath/widgets/pathmanager.py /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/__pycache__/client.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/__pycache__/client.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/__pycache__/protocol.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/__pycache__/protocol.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/__pycache__/ssh.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/__pycache__/ssh.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/client.py /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/jupyterhub /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/jupyterhub/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/jupyterhub/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/jupyterhub/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/jupyterhub/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/jupyterhub/__pycache__/auth.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/jupyterhub/__pycache__/auth.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/jupyterhub/__pycache__/execute.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/jupyterhub/__pycache__/execute.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/jupyterhub/__pycache__/utils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/jupyterhub/__pycache__/utils.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/jupyterhub/auth.py /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/jupyterhub/execute.py /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/jupyterhub/utils.py /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/protocol.py /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/api/ssh.py /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/utils /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/utils/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/utils/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/utils/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/utils/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/utils/__pycache__/installation.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/utils/__pycache__/installation.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/utils/installation.py /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/widgets /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/widgets/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/widgets/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/widgets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/widgets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/widgets/__pycache__/connectiondialog.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/widgets/__pycache__/connectiondialog.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/widgets/__pycache__/connectionstatus.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/widgets/__pycache__/connectionstatus.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/widgets/__pycache__/container.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/widgets/__pycache__/container.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/widgets/connectiondialog.py /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/widgets/connectionstatus.py /usr/lib/python3.11/site-packages/spyder/plugins/remoteclient/widgets/container.py /usr/lib/python3.11/site-packages/spyder/plugins/run /usr/lib/python3.11/site-packages/spyder/plugins/run/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/run/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/run/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/run/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/run/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/run/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/run/__pycache__/confpage.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/run/__pycache__/confpage.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/run/__pycache__/container.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/run/__pycache__/container.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/run/__pycache__/models.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/run/__pycache__/models.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/run/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/run/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/run/__pycache__/widgets.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/run/__pycache__/widgets.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/run/api.py /usr/lib/python3.11/site-packages/spyder/plugins/run/confpage.py /usr/lib/python3.11/site-packages/spyder/plugins/run/container.py /usr/lib/python3.11/site-packages/spyder/plugins/run/models.py /usr/lib/python3.11/site-packages/spyder/plugins/run/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/run/widgets.py /usr/lib/python3.11/site-packages/spyder/plugins/shortcuts /usr/lib/python3.11/site-packages/spyder/plugins/shortcuts/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/shortcuts/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/shortcuts/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/shortcuts/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/shortcuts/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/shortcuts/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/shortcuts/__pycache__/confpage.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/shortcuts/__pycache__/confpage.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/shortcuts/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/shortcuts/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/shortcuts/api.py /usr/lib/python3.11/site-packages/spyder/plugins/shortcuts/confpage.py /usr/lib/python3.11/site-packages/spyder/plugins/shortcuts/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/shortcuts/widgets /usr/lib/python3.11/site-packages/spyder/plugins/shortcuts/widgets/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/shortcuts/widgets/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/shortcuts/widgets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/shortcuts/widgets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/shortcuts/widgets/__pycache__/summary.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/shortcuts/widgets/__pycache__/summary.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/shortcuts/widgets/__pycache__/table.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/shortcuts/widgets/__pycache__/table.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/shortcuts/widgets/summary.py /usr/lib/python3.11/site-packages/spyder/plugins/shortcuts/widgets/table.py /usr/lib/python3.11/site-packages/spyder/plugins/statusbar /usr/lib/python3.11/site-packages/spyder/plugins/statusbar/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/statusbar/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/statusbar/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/statusbar/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/statusbar/__pycache__/confpage.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/statusbar/__pycache__/confpage.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/statusbar/__pycache__/container.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/statusbar/__pycache__/container.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/statusbar/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/statusbar/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/statusbar/confpage.py /usr/lib/python3.11/site-packages/spyder/plugins/statusbar/container.py /usr/lib/python3.11/site-packages/spyder/plugins/statusbar/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/statusbar/widgets /usr/lib/python3.11/site-packages/spyder/plugins/statusbar/widgets/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/statusbar/widgets/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/statusbar/widgets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/statusbar/widgets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/statusbar/widgets/__pycache__/status.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/statusbar/widgets/__pycache__/status.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/statusbar/widgets/status.py /usr/lib/python3.11/site-packages/spyder/plugins/switcher /usr/lib/python3.11/site-packages/spyder/plugins/switcher/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/switcher/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/switcher/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/switcher/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/switcher/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/switcher/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/switcher/__pycache__/container.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/switcher/__pycache__/container.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/switcher/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/switcher/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/switcher/__pycache__/utils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/switcher/__pycache__/utils.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/switcher/api.py /usr/lib/python3.11/site-packages/spyder/plugins/switcher/container.py /usr/lib/python3.11/site-packages/spyder/plugins/switcher/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/switcher/utils.py /usr/lib/python3.11/site-packages/spyder/plugins/switcher/widgets /usr/lib/python3.11/site-packages/spyder/plugins/switcher/widgets/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/switcher/widgets/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/switcher/widgets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/switcher/widgets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/switcher/widgets/__pycache__/item.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/switcher/widgets/__pycache__/item.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/switcher/widgets/__pycache__/proxymodel.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/switcher/widgets/__pycache__/proxymodel.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/switcher/widgets/__pycache__/switcher.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/switcher/widgets/__pycache__/switcher.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/switcher/widgets/item.py /usr/lib/python3.11/site-packages/spyder/plugins/switcher/widgets/proxymodel.py /usr/lib/python3.11/site-packages/spyder/plugins/switcher/widgets/switcher.py /usr/lib/python3.11/site-packages/spyder/plugins/toolbar /usr/lib/python3.11/site-packages/spyder/plugins/toolbar/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/toolbar/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/toolbar/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/toolbar/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/toolbar/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/toolbar/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/toolbar/__pycache__/container.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/toolbar/__pycache__/container.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/toolbar/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/toolbar/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/toolbar/api.py /usr/lib/python3.11/site-packages/spyder/plugins/toolbar/container.py /usr/lib/python3.11/site-packages/spyder/plugins/toolbar/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/tours /usr/lib/python3.11/site-packages/spyder/plugins/tours/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/tours/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/tours/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/tours/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/tours/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/tours/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/tours/__pycache__/container.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/tours/__pycache__/container.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/tours/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/tours/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/tours/__pycache__/tours.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/tours/__pycache__/tours.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/tours/__pycache__/widgets.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/tours/__pycache__/widgets.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/tours/api.py /usr/lib/python3.11/site-packages/spyder/plugins/tours/container.py /usr/lib/python3.11/site-packages/spyder/plugins/tours/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/tours/tours.py /usr/lib/python3.11/site-packages/spyder/plugins/tours/widgets.py /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/__pycache__/container.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/__pycache__/container.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/__pycache__/workers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/__pycache__/workers.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/api.py /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/container.py /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/scripts /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/scripts/install.bat /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/scripts/install.sh /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/widgets /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/widgets/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/widgets/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/widgets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/widgets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/widgets/__pycache__/status.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/widgets/__pycache__/status.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/widgets/__pycache__/update.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/widgets/__pycache__/update.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/widgets/status.py /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/widgets/update.py /usr/lib/python3.11/site-packages/spyder/plugins/updatemanager/workers.py /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/__pycache__/api.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/__pycache__/api.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/__pycache__/confpage.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/__pycache__/confpage.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/api.py /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/confpage.py /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/plugin.py /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/__pycache__/arrayeditor.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/__pycache__/arrayeditor.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/__pycache__/basedialog.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/__pycache__/basedialog.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/__pycache__/collectionsdelegate.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/__pycache__/collectionsdelegate.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/__pycache__/dataframeeditor.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/__pycache__/dataframeeditor.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/__pycache__/importwizard.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/__pycache__/importwizard.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/__pycache__/main_widget.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/__pycache__/main_widget.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/__pycache__/namespacebrowser.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/__pycache__/namespacebrowser.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/__pycache__/objecteditor.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/__pycache__/objecteditor.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/__pycache__/preferences.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/__pycache__/preferences.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/__pycache__/texteditor.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/__pycache__/texteditor.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/arrayeditor.py /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/basedialog.py /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/collectionsdelegate.py /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/dataframeeditor.py /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/importwizard.py /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/main_widget.py /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/namespacebrowser.py /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/objecteditor.py /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/objectexplorer /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/objectexplorer/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/objectexplorer/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/objectexplorer/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/objectexplorer/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/objectexplorer/__pycache__/attribute_model.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/objectexplorer/__pycache__/attribute_model.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/objectexplorer/__pycache__/objectexplorer.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/objectexplorer/__pycache__/objectexplorer.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/objectexplorer/__pycache__/toggle_column_mixin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/objectexplorer/__pycache__/toggle_column_mixin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/objectexplorer/__pycache__/tree_item.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/objectexplorer/__pycache__/tree_item.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/objectexplorer/__pycache__/tree_model.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/objectexplorer/__pycache__/tree_model.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/objectexplorer/__pycache__/utils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/objectexplorer/__pycache__/utils.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/objectexplorer/attribute_model.py /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/objectexplorer/objectexplorer.py /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/objectexplorer/toggle_column_mixin.py /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/objectexplorer/tree_item.py /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/objectexplorer/tree_model.py /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/objectexplorer/utils.py /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/preferences.py /usr/lib/python3.11/site-packages/spyder/plugins/variableexplorer/widgets/texteditor.py /usr/lib/python3.11/site-packages/spyder/plugins/workingdirectory /usr/lib/python3.11/site-packages/spyder/plugins/workingdirectory/__init__.py /usr/lib/python3.11/site-packages/spyder/plugins/workingdirectory/__pycache__ /usr/lib/python3.11/site-packages/spyder/plugins/workingdirectory/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/workingdirectory/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/workingdirectory/__pycache__/confpage.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/workingdirectory/__pycache__/confpage.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/workingdirectory/__pycache__/container.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/workingdirectory/__pycache__/container.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/workingdirectory/__pycache__/plugin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/plugins/workingdirectory/__pycache__/plugin.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/plugins/workingdirectory/confpage.py /usr/lib/python3.11/site-packages/spyder/plugins/workingdirectory/container.py /usr/lib/python3.11/site-packages/spyder/plugins/workingdirectory/plugin.py /usr/lib/python3.11/site-packages/spyder/py3compat.py /usr/lib/python3.11/site-packages/spyder/pyplot.py /usr/lib/python3.11/site-packages/spyder/requirements.py /usr/lib/python3.11/site-packages/spyder/utils /usr/lib/python3.11/site-packages/spyder/utils/__init__.py /usr/lib/python3.11/site-packages/spyder/utils/__pycache__ /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/bsdsocket.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/bsdsocket.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/clipboard_helper.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/clipboard_helper.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/color_system.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/color_system.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/conda.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/conda.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/debug.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/debug.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/encoding.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/encoding.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/environ.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/environ.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/envs.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/envs.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/fixtures.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/fixtures.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/icon_manager.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/icon_manager.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/image_path_manager.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/image_path_manager.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/installers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/installers.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/misc.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/misc.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/palette.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/palette.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/programs.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/programs.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/pyenv.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/pyenv.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/qstringhelpers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/qstringhelpers.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/qthelpers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/qthelpers.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/registries.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/registries.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/sourcecode.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/sourcecode.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/stringmatching.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/stringmatching.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/stylesheet.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/stylesheet.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/syntaxhighlighters.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/syntaxhighlighters.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/system.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/system.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/test.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/test.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/vcs.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/vcs.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/windows.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/windows.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/workers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/__pycache__/workers.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/bsdsocket.py /usr/lib/python3.11/site-packages/spyder/utils/clipboard_helper.py /usr/lib/python3.11/site-packages/spyder/utils/color_system.py /usr/lib/python3.11/site-packages/spyder/utils/conda.py /usr/lib/python3.11/site-packages/spyder/utils/debug.py /usr/lib/python3.11/site-packages/spyder/utils/encoding.py /usr/lib/python3.11/site-packages/spyder/utils/environ.py /usr/lib/python3.11/site-packages/spyder/utils/envs.py /usr/lib/python3.11/site-packages/spyder/utils/external /usr/lib/python3.11/site-packages/spyder/utils/external/LICENSE.txt /usr/lib/python3.11/site-packages/spyder/utils/external/README.rst /usr/lib/python3.11/site-packages/spyder/utils/external/__init__.py /usr/lib/python3.11/site-packages/spyder/utils/external/__pycache__ /usr/lib/python3.11/site-packages/spyder/utils/external/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/external/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/external/__pycache__/lockfile.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/external/__pycache__/lockfile.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/external/binaryornot /usr/lib/python3.11/site-packages/spyder/utils/external/binaryornot/LICENSE.txt /usr/lib/python3.11/site-packages/spyder/utils/external/binaryornot/__init__.py /usr/lib/python3.11/site-packages/spyder/utils/external/binaryornot/__pycache__ /usr/lib/python3.11/site-packages/spyder/utils/external/binaryornot/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/external/binaryornot/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/external/binaryornot/__pycache__/check.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/external/binaryornot/__pycache__/check.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/external/binaryornot/__pycache__/helpers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/external/binaryornot/__pycache__/helpers.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/external/binaryornot/check.py /usr/lib/python3.11/site-packages/spyder/utils/external/binaryornot/helpers.py /usr/lib/python3.11/site-packages/spyder/utils/external/dafsa /usr/lib/python3.11/site-packages/spyder/utils/external/dafsa/__init__.py /usr/lib/python3.11/site-packages/spyder/utils/external/dafsa/__pycache__ /usr/lib/python3.11/site-packages/spyder/utils/external/dafsa/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/external/dafsa/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/external/dafsa/__pycache__/dafsa.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/external/dafsa/__pycache__/dafsa.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/external/dafsa/dafsa.py /usr/lib/python3.11/site-packages/spyder/utils/external/lockfile.py /usr/lib/python3.11/site-packages/spyder/utils/fixtures.py /usr/lib/python3.11/site-packages/spyder/utils/icon_manager.py /usr/lib/python3.11/site-packages/spyder/utils/image_path_manager.py /usr/lib/python3.11/site-packages/spyder/utils/installers.py /usr/lib/python3.11/site-packages/spyder/utils/introspection /usr/lib/python3.11/site-packages/spyder/utils/introspection/__init__.py /usr/lib/python3.11/site-packages/spyder/utils/introspection/__pycache__ /usr/lib/python3.11/site-packages/spyder/utils/introspection/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/introspection/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/introspection/__pycache__/module_completion.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/introspection/__pycache__/module_completion.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/introspection/__pycache__/rope_patch.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/introspection/__pycache__/rope_patch.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/introspection/module_completion.py /usr/lib/python3.11/site-packages/spyder/utils/introspection/rope_patch.py /usr/lib/python3.11/site-packages/spyder/utils/misc.py /usr/lib/python3.11/site-packages/spyder/utils/palette.py /usr/lib/python3.11/site-packages/spyder/utils/programs.py /usr/lib/python3.11/site-packages/spyder/utils/pyenv.py /usr/lib/python3.11/site-packages/spyder/utils/qstringhelpers.py /usr/lib/python3.11/site-packages/spyder/utils/qthelpers.py /usr/lib/python3.11/site-packages/spyder/utils/registries.py /usr/lib/python3.11/site-packages/spyder/utils/snippets /usr/lib/python3.11/site-packages/spyder/utils/snippets/__init__.py /usr/lib/python3.11/site-packages/spyder/utils/snippets/__pycache__ /usr/lib/python3.11/site-packages/spyder/utils/snippets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/snippets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/snippets/__pycache__/ast.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/snippets/__pycache__/ast.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/snippets/__pycache__/lexer.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/snippets/__pycache__/lexer.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/snippets/__pycache__/nodes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/snippets/__pycache__/nodes.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/snippets/__pycache__/parser.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/utils/snippets/__pycache__/parser.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/utils/snippets/ast.py /usr/lib/python3.11/site-packages/spyder/utils/snippets/lexer.py /usr/lib/python3.11/site-packages/spyder/utils/snippets/nodes.py /usr/lib/python3.11/site-packages/spyder/utils/snippets/parser.py /usr/lib/python3.11/site-packages/spyder/utils/sourcecode.py /usr/lib/python3.11/site-packages/spyder/utils/stringmatching.py /usr/lib/python3.11/site-packages/spyder/utils/stylesheet.py /usr/lib/python3.11/site-packages/spyder/utils/syntaxhighlighters.py /usr/lib/python3.11/site-packages/spyder/utils/system.py /usr/lib/python3.11/site-packages/spyder/utils/test.py /usr/lib/python3.11/site-packages/spyder/utils/vcs.py /usr/lib/python3.11/site-packages/spyder/utils/windows.py /usr/lib/python3.11/site-packages/spyder/utils/workers.py /usr/lib/python3.11/site-packages/spyder/widgets /usr/lib/python3.11/site-packages/spyder/widgets/__init__.py /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__ /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/arraybuilder.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/arraybuilder.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/browser.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/browser.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/calltip.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/calltip.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/collapsible.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/collapsible.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/collectionseditor.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/collectionseditor.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/colors.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/colors.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/comboboxes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/comboboxes.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/config.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/config.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/dependencies.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/dependencies.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/dock.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/dock.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/elementstable.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/elementstable.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/findreplace.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/findreplace.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/helperwidgets.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/helperwidgets.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/mixins.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/mixins.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/onecolumntree.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/onecolumntree.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/printer.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/printer.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/reporterror.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/reporterror.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/sidebardialog.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/sidebardialog.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/simplecodeeditor.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/simplecodeeditor.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/tabs.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/tabs.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/waitingspinner.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/widgets/__pycache__/waitingspinner.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/widgets/arraybuilder.py /usr/lib/python3.11/site-packages/spyder/widgets/browser.py /usr/lib/python3.11/site-packages/spyder/widgets/calltip.py /usr/lib/python3.11/site-packages/spyder/widgets/collapsible.py /usr/lib/python3.11/site-packages/spyder/widgets/collectionseditor.py /usr/lib/python3.11/site-packages/spyder/widgets/colors.py /usr/lib/python3.11/site-packages/spyder/widgets/comboboxes.py /usr/lib/python3.11/site-packages/spyder/widgets/config.py /usr/lib/python3.11/site-packages/spyder/widgets/dependencies.py /usr/lib/python3.11/site-packages/spyder/widgets/dock.py /usr/lib/python3.11/site-packages/spyder/widgets/elementstable.py /usr/lib/python3.11/site-packages/spyder/widgets/findreplace.py /usr/lib/python3.11/site-packages/spyder/widgets/github /usr/lib/python3.11/site-packages/spyder/widgets/github/LICENSE.txt /usr/lib/python3.11/site-packages/spyder/widgets/github/__init__.py /usr/lib/python3.11/site-packages/spyder/widgets/github/__pycache__ /usr/lib/python3.11/site-packages/spyder/widgets/github/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/widgets/github/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/widgets/github/__pycache__/backend.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/widgets/github/__pycache__/backend.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/widgets/github/__pycache__/gh_login.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/spyder/widgets/github/__pycache__/gh_login.cpython-311.pyc /usr/lib/python3.11/site-packages/spyder/widgets/github/backend.py /usr/lib/python3.11/site-packages/spyder/widgets/github/gh_login.py /usr/lib/python3.11/site-packages/spyder/widgets/helperwidgets.py /usr/lib/python3.11/site-packages/spyder/widgets/mixins.py /usr/lib/python3.11/site-packages/spyder/widgets/onecolumntree.py /usr/lib/python3.11/site-packages/spyder/widgets/printer.py /usr/lib/python3.11/site-packages/spyder/widgets/reporterror.py /usr/lib/python3.11/site-packages/spyder/widgets/sidebardialog.py /usr/lib/python3.11/site-packages/spyder/widgets/simplecodeeditor.py /usr/lib/python3.11/site-packages/spyder/widgets/tabs.py /usr/lib/python3.11/site-packages/spyder/widgets/waitingspinner.py /usr/lib/python3.11/site-packages/spyder/windows /usr/lib/python3.11/site-packages/spyder/windows/spyder.ico /usr/lib/python3.11/site-packages/spyder/windows/spyder_light.ico /usr/share/applications/spyder.desktop /usr/share/doc/packages/spyder /usr/share/doc/packages/spyder/CHANGELOG.md /usr/share/doc/packages/spyder/README.md /usr/share/icons/hicolor /usr/share/icons/hicolor/128x128 /usr/share/icons/hicolor/128x128/apps /usr/share/icons/hicolor/128x128/apps/spyder.png /usr/share/icons/hicolor/scalable /usr/share/icons/hicolor/scalable/apps /usr/share/icons/hicolor/scalable/apps/spyder.svg /usr/share/icons/spyder.png /usr/share/licenses/spyder /usr/share/licenses/spyder/LICENSE.txt /usr/share/metainfo /usr/share/metainfo/org.spyder_ide.spyder.appdata.xml
Generated by rpm2html 1.8.1
Fabrice Bellet, Sat Nov 16 00:47:12 2024