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

thonny-4.1.1-2.3 RPM for noarch

From OpenSuSE Ports Tumbleweed for noarch

Name: thonny Distribution: openSUSE:Factory:zSystems
Version: 4.1.1 Vendor: openSUSE
Release: 2.3 Build date: Fri Nov 17 23:59:00 2023
Group: Unspecified Build host: reproducible
Size: 7721208 Source RPM: thonny-4.1.1-2.3.src.rpm
Packager: https://bugs.opensuse.org
Url: https://thonny.org/
Summary: Python IDE for beginners
Thonny is a Python IDE meant for learning programming.

Provides

Requires

License

MIT

Changelog

* Fri Nov 17 2023 malcolmlewis@opensuse.org
  - Add python3-wheel to requires for plugin-manager, (boo#1216951).
  - Add python3-setuptools to requires as per rpmlint session.
* Wed Aug 09 2023 Dominik George <nik@naturalnet.de>
  - Drop CONTRIBUTING.rst (removed from upstream tarball)
  - update to 4.1.1
    * Fix warning for the cases where Thonny avoids user module shadowing a library module (#384)
    * Fix installing from local file in ESP flashing dialog (#2811)
    * Use a tilde to separate pre-release versions in the AppData (#2807), by @jwillikers
    * Use bigger initial width in simple mode
    * Big progress with Italian translation, by mapi68, Ribezzz and sailslack
    * Updated Chinese (TW) and English (UK) translations
  - update to 4.1.0
    * Fix MicroPython config page regression introduced in 4.1.0b1 (#2724, #2763)
    * Fix remote Python 3 (SSH) connection error (regression introduced in 4.1.0b1)
    * Fix code completion shortcut displayed in macOS menu
    * Add command "Show esptool version" for ESP flasher
    * Don't disconnect for ESP flasher commands which don't touch the device
    * Close tab on middle click (#2767) by @mrexodia
    * Make package manager support new micropython-lib index (#2777)
    * Report macOS version instead of Darwin version in the About box
    * Implement more flexible Raspberry Pi detection
    * Enable thonny to open and save files with zenity 3.91+ (#2786) by @befeleme
    * Make dbus_next dependency optional (#2771)
    * Recognize ESP32 as possible CircuitPython device
    * Add menu indicator for back-end switcher
    * Allow WebREPL for RP2040 backend (experimental)
    * Use correct MicroPython start address (0x0 instead of 0x1000) when flashing ESP32-S3
    * Recognize ESP32 devices by VID 0x303A
    * Don't show irrelevant ports in port selector (e.g. /dev/cu.Bluetooth-Incoming-Port)
    * Allow setting --flash-size in ESP flasher, #2801
    * Rename "Raspberry Pi" initial settings to "Raspberry Pi (simple)"
    * Update several translations
    * Add en_GB translation
    * Attempt to overcome "window was deleted before its visibility changed" error
    * Fix pipkin directory creation in paste mode (e.g. package installation via WebREPL)
    * Upgrade bundled websockets, paramiko, docutils, mypy, Send2Trash, esptool to latest versions
* Sun Jan 22 2023 Dirk Müller <dmueller@suse.com>
  - update to 4.0.2:
    * Fix Mypy logging error in the Assistant, #2491 by @kr-g and @solsword
    * Fix AttributeError on save, #2454
    * Add Thonny version as environment value for user programs
    * Make `__file__` contain absolute path
    * Start SSH preparation command with space to avoid adding it to shell
      history
    * Bump pipkin version to 1.0b8 and fix various bugs with MicroPython
      package installation, including not being able to update a package
    * Restore Find/Replace dialog close button and non-dialog behavior
    * Make Find/Replace dialog non-modal again
    * Fix Find/Replace seeding
    * Restore focus after using file dialogs
    * Don't remove stacktrace links after closing the process
    * Never clear shell when Stop/Restart is used for stopping a process
    * Treat .toml, .gitignore and .env as text files
    * Fix expression box glitch (lower frame box remaining visible) when
      debugging on macOS
    * Ignore disk flushing errors in the end of UF2 installation
    * Make port finding in the end of UF2 installation process more robust
    * Don't enable variant and version selection in UF2 dialog before variants
      get downloaded
    * Add Vietnamese translation, by Bui Huy Quang
    * Update several translations
    * Fix the name for Slowenian
    * Update several deps in Thonny + Python bundles (asttokens, mypy, pylint,
      esptool, paramiko)
* Sun Jan 01 2023 Thomas Wagner <wagner-thomas@gmx.at>
  - Update to 4.0.1
    * Drop support for Python 3.5, 3.6 and 3.7
    * Require single click for toggling a breakpoint, #2293
    * Clear Shell before starting new process (Run, Debug, Stop/Restart, ...) by default. Can be turned off in Tools => Options => Shell, #1681
    * Rename "Python 3" back-end to "Local Python 3"
    * Don't SetProcessDpiAwareness for user programs anymore. This means for example, that Tkinter and Pygame programs on Windows run as if they were executed with plain Python (ie they may become blurry on modern displays). For clear picture, start your program with import ctypes; ctypes.OleDLL("shcore").SetProcessDpiAwareness(1), #2159
    * Drop support for jedi versions below 0.18.1
    * Add the option for automatically getting completions while typing (Tools => Options => Editor)
    * Selecting a completion with Tab now replaces the name suffix right of the cursor, #1998
    * Turn off requesting completions with Tab in editors by default, #2069
    * Show documentation for the selected completion with another Ctrl-Space or automatically (Tools => Options => Editor)
    * Add "call-tips" -- a box describing the formal parameters of current method call. Invoke manually with Ctrl-Shift-Space or automatically after typing open parentheses (Tools => Options => Editor)
    * Enhance Go-to-definition (Ctrl-click). The name is now underlined while ctrl-hovering over it.
    * Add LEGO® EV3 back-end: "Run => Select interpreter => MicroPython (EV3)"
    * Support CircuitPython with micro:bit, #2251
    * Use pipkin for managing packages on MicroPython and CircuitPython devices. This enables proper listing of packages together with version info and proper uninstallation.
    * Use .local_rtc config parameters instead of (oppositely worded) .utc_clock in MicroPython back-ends, 116aecd
    * Present MicroPython time options (whether to sync time and whether to use local time) in back-end configuration page, #1638
    * Automatically interrupt current process when connecting to bare-metal MicroPython or CircuitPython device. This can be turned off at device's settings page, #2059
    * Don't hide the output when Stop/Restarting MicroPython, #1805
    * Make internal MicroPython errors less intimidating. In several cases the errors are caused by bugs in MicroPython or USB driver and there is no use of showing the stacktrace. User is now directed to restart the device and stacktrace can be checked from the backend.log, #1799
    * Make MicroPython back-end advise Ctrl+C also if only whitespace characters get printed, #1755
    * Allow running MicroPython scripts without soft-rebooting first, #1565, #1716
    * Add generic "MicroPython (RP2040)" back-end in addition to the more specific "MicroPython (Raspberry Pi Pico)", #2151
    * Mention the possibility to reconfigure file types when denying opening remote files in a system app, #2148
    * Refactor MicroPython/CircuitPython flashing dialog, #2344
    * Add separate "Install ..." items to the back-end switcher menu if a device in UF2 bootloader mode is detected, #2387
    * Use "Install MicroPython" instead of "Install firmware", #2364
    * Take OSC commands into account when looking for prompts (relevant for CircuitPython 8), #2349
    * Disable "Run" command when MicroPython device is disconnected
    * Update completion stubs for MicroPython and CircuitPython (from @hlovatt and @adafruit)
    * Make Shell read-only when device is disconnected
    * Fix various problems with managing files on CircuitPython devices
    * Don't assume all CircuitPython boards have RTC, #1760
    * Fix error with evaluating globals() on MicroPython device, #1938
    * Add MicrobitImage inspector for Object inspector
    * Add TODO view (by @kr-g), #2067
    * Add possibility to activate a virtual environment via Files view (by @kr-g), #2381
    * Add new toolbar button which opens the wiki page describing ways to help Ukraine survive the attack from Russia.
    * Allow running content of untitled editors without saving, #778
    * Make stacktrace links to <stdin> and <input> pseudo-files go to the editor containing corresponding source, #778
    * Ask confirmation for adding .py extension when the user saves the file without any extension to MicroPython/CircuitPython device, #2077
    * Don't add the .py extension when the user saves a local file and selects "All files" filter.
    * Add Cut/Copy/Paste to the file browser, #2001 by @kr-g
    * Make editor remember current line when reloading external changes, #2001 by @kr-g
    * Add "Edit => Go to line..." command (Ctrl-G), #2001 by @kr-g
    * Add "Rename" command for the local file browser, #2001 by @kr-g
    * Add nicer Stop-button for higher resolutions, #1445 by @speedy-10
    * Improve icon scaling -- use larger icons when Treeview row height is larger than general.large_icon_rowheight_threshold
    * Use default font in Treeviews (including Files and Variables view). Therefore Treeview's font size is now affected by the scaling factor and is not affected by editor font size.
    * Use isolated mode for launching Thonny. This includes hiding user-site packages from Thonny's GUI process (not from user programs). Plug-ins now get installed under Thonny's data folder, #2038, #1651
    * Allow installing packages for remote CPython backend, #1319
    * Flatten the list of interpreters in the backend-switcher menu (lower-right corner of the main window)
    * Removed previously deprecated "A special virtual environment". Use regular virtual environments instead.
    * Merge "The same interpreter which runs Thonny" and "Alternative Python 3 interpreter or virtual environment" back-ends into "Local Python 3"
    * Back-end switcher now remembers several configurations for remote CPython and MicroPython.
    * Make package manager work for remote Python 3 (SSH)
    * Fix "Seed find/replace with currently-selected text" for Linux, #2356
    * Use "vista" Tk-theme instead of "xpnative" in Windows. Gives nicer combobox, #1663
    * Automatically reload saved files after external modification (with help from @kr-g), #1589, #1455, #1968
    * Support OSC sequences for setting terminal title, #2369
    * Toggle hidden files also via file-browser's context menu, #1039
    * Seed find/replace with currently-selected text, #2356
    * Add coloring for match and case soft keywords, #2358
    * Add Slovenian translation (by cspaier)
    * Add "Assistant" help page explaining the possibility to omit selected Pylint checks, #1978
    * Add command "Run => Visualize current script at Python Tutor", #2242
    * Add options for automatically making uploaded or saved shebang scripts executable (includes changing Windows line breaks to Unix ones). See "Editor" and SSH-backends' config pages.
    * Allow back-end plugins to modify sys.path, #2281
    * Warn when environment value is provided with quotes, #2184
    * Let macOS installer know the bundle is able to run in arm64 mode, #2201
    * Add Tamil translation, by Kamala Kannan K and அனிச்பிரபு தி, #2211
    * Add Thai translation, by Tomzt Pimai and Game of
    * Allow assigning Python coloring for Python-like files, #1927
    * Many bug-fixes
* Tue Dec 28 2021 Ben Greiner <code@bnavigator.de>
  - Remove unused unmaintained python3-pytest-black test requirement
  - Reactivate rudimentary test suite on TW
  - Find and mark language files
* Wed Nov 10 2021 Guillaume GARDET <guillaume.gardet@opensuse.org>
  - Update to 3.3.14:
    * Fix problems in org.thonny.Thonny.appdata.xml
    * Allow assigning Python coloring for Python-like files, #1927
    * Increase the initial top coordinate of Thonny's main window.
    Fixes problem of Thonny's title bar being hidden by the system
    menubar, #1925
  - Changelog from previous releases:
    * Restore syncing to localtime for RPi Pico (fixed regression
    introduced in 3.3.11), #1886
    * Fix installing from requirements.txt in MicroPython, #1879
    * Allow specifying different colors for method and function
    calls, by Jonathan Campbell, #1884
    * Extend editor API for plug-ins (close event and content
    load/save hooks), by Nicolas Despres, #1891
    * Fix technical errors in some translations, by Karolina Surma, #1895
    * Warn when inputting non-ascii chars in MicroPython, #1911
    * Fix installing for all users in Windows installer, #1119
    and #1909. See https://github.com/thonny/thonny/wiki/DeploymentOptions#all-users-vs-current-user-install for more info.
    * Prepare Thonny for Flatpak, by Jordan Williams, #1900 and #1912
    * Update minipip to 0.1b5 in order to skip installing Blinka
    when installing libraries for CircuitPython
    * Update Polish translation
    * Update org.thonny.Thonny.appdata.xml
    * Fix MicroPython management errors when user code shadows
    built-in names, #1856
    * Fix package manager getting frozen when installing packages, #1871
    * Fix problem of MicroPython package manager taking module names
    for distribution names, #1833
    * Fix ugly error in ESP flasher dialog when esptool is not found, #1837
    * Fix Tkinter error when using venv created from bundled Python, #1835
    * Use 0..6 for weekday when synchronizing RTC via machine, #1868
    * Make esptool auto-detect chip type, #1838
    * Fix Unix MicroPython time validation (misdiagnosed time offset)
    * Update dependencies in Thonny+Python bundles
    * Update Spanish, Polish, Chinese (TW) translations
    * Support installing regular pip-compatible packages to MicroPython
    or CircuitPython (so far only upip-compatible packages were supported), #1541
    * Fix "error 403" problems when installing MicroPython packages
    from PyPI, #1822
    * Fix error when Object inspector is open and a MicroPython objec
    t can't be found by id, #1796
    * Reduce memory usage by Thonny's MicroPython helper (store last
    REPL value in global _ instead of storing N last values in a list), #1797, #1798
    * Upgraded several dependencies in binary bundles
    * Fix missing libffi6 error in Linux builds, #767
    * Make confugration dialog larger to fit French strings, by sourceperl, #1694
    * Fix "_prepare_after_soft_reboot" error in Unix MicroPython mode, #1715
    * Support interactive programs with Unix MicroPython, #1725
    * Fix read-only filesystem error for CircuitPython in non-English
    variants of CircuitPython, #1662
    * Fix error on right clicking in local file explorer with Italian
    translation, #1713
    * Fix back-end switcher menu position and theme, #1719, #1720
    * Fix "pop from empty list" error when MicroPython is having
    problems, #1586
    * Fix MYPYPATH / MyPy not working, #1124
    * Highlight unclosed strings even inside unclosed parens, #1770
    * Fix problem running code via WebREPL, #1762
    * Make Outline show also async, defs #1787
    * Don't show full error info when ManagementError doesn't seem to be
    Thonny's fault, #1788
    * Don't show error dialog when querying globals fails (error is
    shown on the variables table instead), #1789
    * Recover from corrupted rpc.sock ("invalid literal for int()
    with base 10" error), #1745
    * Add 3 translated Help files for Spanish, by José Carlos García, #1759
    * Add Korean translations of Help files, by Hyungseok Choi, #1758
    * Add first version of Finnish translation by Lrasinen
    * Update translations for Albanian, French, Korean
    * Add newer MyPy (0.812) to binary bundles
    * Fix crash in Shell when negative int-s are evaluated in
    MicroPython (regression introduced in 3.3.4), #1670
    * Fix problems with wm_overrideredirect on macOS with Tk 8.6.11, #1659
    * Fix crash in Plotter when more than 10 numbers are plotted, #1648
    * Hide unsuitable PYTHONPATH environment variable in macOS, #1651
    * Fix too short reprs at MicroPython REPL (regression introduced in 3.3.4), #1627
    * Fix incorrect presentation of long output lines, #1628
    * Fix error in nicer debugger when stepping in generators, #1631
    * Fix infinite recursion error when evaluating globals() in MicroPython
    REPL while object inspector is open, #1641
    * Update Greek translation
    * CHANGED: MicroPython time synchronization now sets RTC to local
    time instead of UTC. This can be changed via a hidden configuration
    option (https://github.com/thonny/thonny/wiki/MicroPython#advanced-configuration), #1603
    * Add time synchronization for RaspberryPi Pico, #1563, #1592
    * Skip loading obsolete thonny-pico plug-in, which is now built in, #1575
    * Get rid of misleading SSL warning in micropip.py and show a warning
    about non-MicroPython packages, #1621
    * Fix WebREPL connection for MicroPython 1.14 by using regular paste
    mode instead of the new raw-paste mode, #1613
    * Delay importing jedi and asttokens for improved performance, #1556
    * Don't assume "dialout" group is required when MicroPython
    connection fails with permission error, #1286
    * Reduce the memory usage of showing global variables by capping
    object representations to 50 first characters in MicroPython, #1582
    * Add Hungarian translation (by Laszlo Kocsis)
    * Updated translations for German, Korean, Italian, Dutch (by various authors)
* Tue Feb 02 2021 Guillaume GARDET <guillaume.gardet@opensuse.org>
  - Drop python singlespec since thonny is an app, not a lib.
  - Add desktopfiles support
* Tue Feb 02 2021 Guillaume GARDET <guillaume.gardet@opensuse.org>
  - Fix required python module
* Mon Jan 25 2021 Guillaume GARDET <guillaume.gardet@opensuse.org>
  - Updated to version 3.3.3:
    * Add MicroPython support for Raspberry Pi Pico
      (https://www.raspberrypi.org/blog/raspberry-pi-silicon-pico-now-on-sale/)
    * Better support for MicroPython daily builds, #1545, #1553
    * Automatically prepend relevant Anaconda directories to PATH.
      Fixes problem with importing Anaconda's numpy, #1522
    * Make custom Python chooser see more interpreters, #1522
    * Fix several spelling mistakes, by freddii, #1534
    * Update toolbar buttons, when another editor gets selected,
      fixes wrong button states, #1536
    * Catch errors when opening file in system app, #1526
    * Fix internal error while using Outline View, #1543
    * Fix truncated System Shell environment on macOS, #1529
    * Add /usr/local/bin to the PATH of the back-end process if missing, #1131
    * Fix error while parsing Pygame Zero error, #1535
    * Fix MicroPython completion errors with jedi 0.18, #1560
    * Add incomplete Korean language by Augene J. Pak, Fabianus.c,
      Suk-Hyung Hwang, YEON, $1531
    * Add incomplete Albanian translation by Algent Albrahimi
    * [Technical] Allow older Send2Trash (Fedora doesn't have version 1.5 of this)
    * [Technical] Remove erroneous executable flags from some files
  - Changelog from skipped version 3.3.2:
    * Fix the problem of missing docstrings, #1481
    * Fix MicroPython management error after executing machine.reset(), #1492
    * Add support for MicroPython raw paste mode (usable in MicroPython 1.14+), #1498
    * Restore MicroPython raw mode as fallback, should fix problems with
      M5Stick and W600, #1516
    * Add syntax highlighting for non-decimal number literals and support
      underscores, #1482 by Stefan Rothe
    * Make sure all output from the program gets presented, #1504
    * Interrupt current program when running a MicroPython script, #1512
    * Add support for Jedi 0.18, #1497
    * Fix arguments completions for jedi 0.16+, #1511
    * Make micro:bit support a bit more robust, #1515
    * Add Persian (Farsi) translation by Farshid Meidani
    * Add Slovak translation by jose1711
    * Add Armenian translation by Avag. sayan
    * Update Italian and Chinese (TW) translations
* Thu Dec 24 2020 malcolmlewis@opensuse.org
  - Updated to version 3.3.1:
    * Allow installing MicroPython to micro:bit v2.
    * Fix problem with MicroPython programs creating lot of output
      very quickly, (gh#thonny/thonny#1419).
    * Fix wrong message when saving to MP and device is busy,
      (gh#thonny/thonny#1437).
    * Bump Pyserial version from 3.5b1 to 3.5, fix problem with some
      ESP devices, (gh#thonny/thonny#1443).
    * Fix error when trying to download file from microbit,
      (gh#thonny/thonny#1440).
    * Don't assume anything about conf files in Pi theme,
      (gh#thonny/thonny#1436).
    * Fix error on reseting MicroPython device,
      (gh#thonny/thonny#1442).
    * Fix unwanted output from expession statements in MicroPython,
      (gh#thonny/thonny#1441).
    * Treat double-click in the remote file dialog differently from
      double-click in the Files view, (gh#thonny/thonny#1432).
    * Fix error when closing MP file dialog without name,
      (gh#thonny/thonny#1431).
    * Refactor "File => Rename" command (new label "Move / rename"
      and you can't "rename" a file on MP device to a file on local
      disc and vice versa), (gh#thonny/thonny#1446).
    * Fix broken links in help pages, (gh#thonny/thonny#1447).
    * Use THONNY_USER_DIR/temp for temp files. Fixes printing when
      default browser is Snap Chrome, (gh#thonny/thonny#1435).
    * Fix error when clicking on "Attributes" tab on Object Inspector
      when no object is selected (MP) (gh#thonny/thonny#1450).
    * Allow specifying DTR/RTS for serial connection (to avoid
      restarting ESP on connect), (gh#thonny/thonny#1462).
    * Open log window automatically if work dialog encounters error,
      (gh#thonny/thonny#1466).
    * Don't close work dialog automatically if log window is opened,
      (gh#thonny/thonny#1465).
    * Fix dummy MicroPython packages giving ugly errors,
      (gh#thonny/thonny#1464).
    * Fix crashes in Assistant view with Dracula theme,
      (gh#thonny/thonny#1463).
    * Work around Caps lock problem when binding command shortcuts,
      (gh#thonny/thonny#1347).
    * Translation updates.

Files

/usr/bin/thonny
/usr/lib/python3.11/site-packages/thonny
/usr/lib/python3.11/site-packages/thonny-4.1.1-py3.11.egg-info
/usr/lib/python3.11/site-packages/thonny-4.1.1-py3.11.egg-info/PKG-INFO
/usr/lib/python3.11/site-packages/thonny-4.1.1-py3.11.egg-info/SOURCES.txt
/usr/lib/python3.11/site-packages/thonny-4.1.1-py3.11.egg-info/dependency_links.txt
/usr/lib/python3.11/site-packages/thonny-4.1.1-py3.11.egg-info/entry_points.txt
/usr/lib/python3.11/site-packages/thonny-4.1.1-py3.11.egg-info/requires.txt
/usr/lib/python3.11/site-packages/thonny-4.1.1-py3.11.egg-info/top_level.txt
/usr/lib/python3.11/site-packages/thonny/VERSION
/usr/lib/python3.11/site-packages/thonny/__init__.py
/usr/lib/python3.11/site-packages/thonny/__main__.py
/usr/lib/python3.11/site-packages/thonny/__pycache__
/usr/lib/python3.11/site-packages/thonny/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/__main__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/__main__.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/assistance.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/assistance.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/ast_utils.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/ast_utils.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/backend.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/backend.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/base_file_browser.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/base_file_browser.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/codeview.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/codeview.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/common.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/common.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/config.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/config.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/config_ui.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/config_ui.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/editor_helpers.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/editor_helpers.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/editors.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/editors.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/export.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/export.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/first_run.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/first_run.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/gridtable.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/gridtable.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/jedi_utils.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/jedi_utils.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/languages.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/languages.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/memory.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/memory.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/misc_utils.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/misc_utils.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/roughparse.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/roughparse.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/rst_utils.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/rst_utils.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/running.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/running.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/shell.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/shell.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/terminal.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/terminal.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/tktextext.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/tktextext.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/token_utils.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/token_utils.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/udisks.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/udisks.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/ui_utils.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/ui_utils.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/workbench.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/workbench.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/workdlg.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/__pycache__/workdlg.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/assistance.py
/usr/lib/python3.11/site-packages/thonny/ast_utils.py
/usr/lib/python3.11/site-packages/thonny/backend.py
/usr/lib/python3.11/site-packages/thonny/base_file_browser.py
/usr/lib/python3.11/site-packages/thonny/codeview.py
/usr/lib/python3.11/site-packages/thonny/common.py
/usr/lib/python3.11/site-packages/thonny/config.py
/usr/lib/python3.11/site-packages/thonny/config_ui.py
/usr/lib/python3.11/site-packages/thonny/dbus
/usr/lib/python3.11/site-packages/thonny/dbus/org.freedesktop.DBus.ObjectManager.xml
/usr/lib/python3.11/site-packages/thonny/dbus/org.freedesktop.UDisks2.xml
/usr/lib/python3.11/site-packages/thonny/defaults.ini
/usr/lib/python3.11/site-packages/thonny/editor_helpers.py
/usr/lib/python3.11/site-packages/thonny/editors.py
/usr/lib/python3.11/site-packages/thonny/export.py
/usr/lib/python3.11/site-packages/thonny/first_run.py
/usr/lib/python3.11/site-packages/thonny/gridtable.py
/usr/lib/python3.11/site-packages/thonny/jedi_utils.py
/usr/lib/python3.11/site-packages/thonny/languages.py
/usr/lib/python3.11/site-packages/thonny/memory.py
/usr/lib/python3.11/site-packages/thonny/misc_utils.py
/usr/lib/python3.11/site-packages/thonny/plugins
/usr/lib/python3.11/site-packages/thonny/plugins/__init__.py
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/about.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/about.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/assistant_config_page.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/assistant_config_page.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/ast_view.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/ast_view.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/autocomplete.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/autocomplete.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/backend_config_page.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/backend_config_page.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/base_syntax_themes.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/base_syntax_themes.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/base_ui_themes.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/base_ui_themes.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/birdseye_frontend.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/birdseye_frontend.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/calltip.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/calltip.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/cells.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/cells.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/clean_ui_themes.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/clean_ui_themes.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/coloring.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/coloring.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/commenting_indenting.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/commenting_indenting.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/common_editing_commands.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/common_editing_commands.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/debugger.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/debugger.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/dock_user_windows_frontend.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/dock_user_windows_frontend.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/editor_config_page.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/editor_config_page.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/event_logging.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/event_logging.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/event_view.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/event_view.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/files.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/files.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/find_replace.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/find_replace.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/general_config_page.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/general_config_page.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/goto_definition.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/goto_definition.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/heap.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/heap.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/highlight_names.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/highlight_names.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/locals_marker.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/locals_marker.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/misc_analyzers.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/misc_analyzers.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/notes.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/notes.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/object_inspector.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/object_inspector.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/outline.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/outline.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/paren_matcher.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/paren_matcher.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/pgzero_frontend.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/pgzero_frontend.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/pip_gui.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/pip_gui.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/pythontutor.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/pythontutor.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/remove_old_data_dir.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/remove_old_data_dir.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/replayer.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/replayer.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/run_debug_config_page.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/run_debug_config_page.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/shell_config_page.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/shell_config_page.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/shell_macro.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/shell_macro.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/statement_boxes.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/statement_boxes.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/stdlib_error_helpers.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/stdlib_error_helpers.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/terminal_config_page.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/terminal_config_page.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/theme_and_font_config_page.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/theme_and_font_config_page.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/thonny_folders.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/thonny_folders.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/todo_view.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/todo_view.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/tomorrow_syntax_theme.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/tomorrow_syntax_theme.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/variables.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/__pycache__/variables.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/about.py
/usr/lib/python3.11/site-packages/thonny/plugins/assistant_config_page.py
/usr/lib/python3.11/site-packages/thonny/plugins/ast_view.py
/usr/lib/python3.11/site-packages/thonny/plugins/autocomplete.py
/usr/lib/python3.11/site-packages/thonny/plugins/backend
/usr/lib/python3.11/site-packages/thonny/plugins/backend/__init__.py
/usr/lib/python3.11/site-packages/thonny/plugins/backend/__pycache__
/usr/lib/python3.11/site-packages/thonny/plugins/backend/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/backend/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/backend/__pycache__/birdseye_backend.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/backend/__pycache__/birdseye_backend.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/backend/__pycache__/dock_user_windows_backend.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/backend/__pycache__/dock_user_windows_backend.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/backend/__pycache__/flask_backend.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/backend/__pycache__/flask_backend.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/backend/__pycache__/matplotlib_backend.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/backend/__pycache__/matplotlib_backend.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/backend/__pycache__/pgzero_backend.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/backend/__pycache__/pgzero_backend.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/backend/birdseye_backend.py
/usr/lib/python3.11/site-packages/thonny/plugins/backend/dock_user_windows_backend.py
/usr/lib/python3.11/site-packages/thonny/plugins/backend/flask_backend.py
/usr/lib/python3.11/site-packages/thonny/plugins/backend/matplotlib_backend.py
/usr/lib/python3.11/site-packages/thonny/plugins/backend/pgzero_backend.py
/usr/lib/python3.11/site-packages/thonny/plugins/backend_config_page.py
/usr/lib/python3.11/site-packages/thonny/plugins/base_syntax_themes.py
/usr/lib/python3.11/site-packages/thonny/plugins/base_ui_themes.py
/usr/lib/python3.11/site-packages/thonny/plugins/birdseye_frontend.py
/usr/lib/python3.11/site-packages/thonny/plugins/calltip.py
/usr/lib/python3.11/site-packages/thonny/plugins/cells.py
/usr/lib/python3.11/site-packages/thonny/plugins/circuitpython
/usr/lib/python3.11/site-packages/thonny/plugins/circuitpython/__init__.py
/usr/lib/python3.11/site-packages/thonny/plugins/circuitpython/__pycache__
/usr/lib/python3.11/site-packages/thonny/plugins/circuitpython/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/circuitpython/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/circuitpython/__pycache__/cirpy_back.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/circuitpython/__pycache__/cirpy_back.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/circuitpython/__pycache__/cirpy_front.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/circuitpython/__pycache__/cirpy_front.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/circuitpython/cirpy_back.py
/usr/lib/python3.11/site-packages/thonny/plugins/circuitpython/cirpy_front.py
/usr/lib/python3.11/site-packages/thonny/plugins/clean_ui_themes.py
/usr/lib/python3.11/site-packages/thonny/plugins/coloring.py
/usr/lib/python3.11/site-packages/thonny/plugins/commenting_indenting.py
/usr/lib/python3.11/site-packages/thonny/plugins/common_editing_commands.py
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_backend
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_backend/__init__.py
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_backend/__pycache__
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_backend/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_backend/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_backend/__pycache__/cp_back.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_backend/__pycache__/cp_back.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_backend/__pycache__/cp_launcher.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_backend/__pycache__/cp_launcher.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_backend/__pycache__/cp_tracers.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_backend/__pycache__/cp_tracers.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_backend/cp_back.py
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_backend/cp_launcher.py
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_backend/cp_tracers.py
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_frontend
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_frontend/__init__.py
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_frontend/__pycache__
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_frontend/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_frontend/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_frontend/__pycache__/cp_front.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_frontend/__pycache__/cp_front.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_frontend/__pycache__/cp_pip_gui.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_frontend/__pycache__/cp_pip_gui.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_frontend/cp_front.py
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_frontend/cp_pip_gui.py
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_ssh
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_ssh/__init__.py
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_ssh/__pycache__
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_ssh/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_ssh/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_ssh/__pycache__/cps_back.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_ssh/__pycache__/cps_back.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_ssh/__pycache__/cps_front.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_ssh/__pycache__/cps_front.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_ssh/__pycache__/cps_pip_gui.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_ssh/__pycache__/cps_pip_gui.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_ssh/cps_back.py
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_ssh/cps_front.py
/usr/lib/python3.11/site-packages/thonny/plugins/cpython_ssh/cps_pip_gui.py
/usr/lib/python3.11/site-packages/thonny/plugins/debugger.py
/usr/lib/python3.11/site-packages/thonny/plugins/dock_user_windows_frontend.py
/usr/lib/python3.11/site-packages/thonny/plugins/editor_config_page.py
/usr/lib/python3.11/site-packages/thonny/plugins/esp
/usr/lib/python3.11/site-packages/thonny/plugins/esp/__init__.py
/usr/lib/python3.11/site-packages/thonny/plugins/esp/__pycache__
/usr/lib/python3.11/site-packages/thonny/plugins/esp/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/esp/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/esp/__pycache__/esp_back.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/esp/__pycache__/esp_back.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/esp/esp32_api_stubs
/usr/lib/python3.11/site-packages/thonny/plugins/esp/esp32_api_stubs/esp32.pyi
/usr/lib/python3.11/site-packages/thonny/plugins/esp/esp32_api_stubs/mp-1.18-esp32.txt
/usr/lib/python3.11/site-packages/thonny/plugins/esp/esp_back.py
/usr/lib/python3.11/site-packages/thonny/plugins/ev3
/usr/lib/python3.11/site-packages/thonny/plugins/ev3/__init__.py
/usr/lib/python3.11/site-packages/thonny/plugins/ev3/__pycache__
/usr/lib/python3.11/site-packages/thonny/plugins/ev3/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/ev3/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/ev3/__pycache__/ev3_back.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/ev3/__pycache__/ev3_back.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/ev3/ev3_back.py
/usr/lib/python3.11/site-packages/thonny/plugins/event_logging.py
/usr/lib/python3.11/site-packages/thonny/plugins/event_view.py
/usr/lib/python3.11/site-packages/thonny/plugins/files.py
/usr/lib/python3.11/site-packages/thonny/plugins/find_replace.py
/usr/lib/python3.11/site-packages/thonny/plugins/general_config_page.py
/usr/lib/python3.11/site-packages/thonny/plugins/goto_definition.py
/usr/lib/python3.11/site-packages/thonny/plugins/heap.py
/usr/lib/python3.11/site-packages/thonny/plugins/help
/usr/lib/python3.11/site-packages/thonny/plugins/help/__init__.py
/usr/lib/python3.11/site-packages/thonny/plugins/help/__pycache__
/usr/lib/python3.11/site-packages/thonny/plugins/help/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/help/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/help/assistant.rst
/usr/lib/python3.11/site-packages/thonny/plugins/help/birdseye.rst
/usr/lib/python3.11/site-packages/thonny/plugins/help/debuggers.rst
/usr/lib/python3.11/site-packages/thonny/plugins/help/debugging.rst
/usr/lib/python3.11/site-packages/thonny/plugins/help/dock.rst
/usr/lib/python3.11/site-packages/thonny/plugins/help/errors.rst
/usr/lib/python3.11/site-packages/thonny/plugins/help/flask.rst
/usr/lib/python3.11/site-packages/thonny/plugins/help/index.rst
/usr/lib/python3.11/site-packages/thonny/plugins/help/modes.rst
/usr/lib/python3.11/site-packages/thonny/plugins/help/packages.rst
/usr/lib/python3.11/site-packages/thonny/plugins/help/plotter.rst
/usr/lib/python3.11/site-packages/thonny/plugins/help/program_arguments.rst
/usr/lib/python3.11/site-packages/thonny/plugins/help/shell.rst
/usr/lib/python3.11/site-packages/thonny/plugins/help/turtle.rst
/usr/lib/python3.11/site-packages/thonny/plugins/highlight_names.py
/usr/lib/python3.11/site-packages/thonny/plugins/locals_marker.py
/usr/lib/python3.11/site-packages/thonny/plugins/microbit
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/__init__.py
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/__pycache__
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/__pycache__/microbit_back.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/__pycache__/microbit_back.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/__pycache__
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/__pycache__/collections.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/__pycache__/collections.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/__pycache__/gc.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/__pycache__/gc.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/__pycache__/machine.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/__pycache__/machine.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/__pycache__/math.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/__pycache__/math.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/__pycache__/micropython.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/__pycache__/micropython.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/__pycache__/time.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/__pycache__/time.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/__pycache__/ucollections.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/__pycache__/ucollections.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/antigravity.pyi
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/array.pyi
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/audio.pyi
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/collections.py
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/gc.py
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/love.pyi
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/machine.py
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/math.py
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/microbit.pyi
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/micropython.py
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/music.pyi
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/neopixel.pyi
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/os.pyi
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/radio.pyi
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/random.pyi
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/speech.pyi
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/struct.pyi
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/sys.pyi
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/this.pyi
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/time.py
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/uarray.pyi
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/ucollections.py
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/ustruct.pyi
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/api_stubs/utime.pyi
/usr/lib/python3.11/site-packages/thonny/plugins/microbit/microbit_back.py
/usr/lib/python3.11/site-packages/thonny/plugins/micropython
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__init__.py
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/bare_metal_backend.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/bare_metal_backend.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/base_flashing_dialog.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/base_flashing_dialog.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/connection.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/connection.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/esptool_dialog.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/esptool_dialog.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/miniterm_wrapper.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/miniterm_wrapper.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/mp_back.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/mp_back.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/mp_common.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/mp_common.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/mp_front.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/mp_front.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/os_mp_backend.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/os_mp_backend.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/pip_gui.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/pip_gui.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/serial_connection.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/serial_connection.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/ssh_connection.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/ssh_connection.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/subprocess_connection.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/subprocess_connection.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/uf2dialog.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/uf2dialog.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/webrepl_connection.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/__pycache__/webrepl_connection.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/bare_metal_backend.py
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/base_flashing_dialog.py
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/connection.py
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/esptool_dialog.py
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/miniterm_wrapper.py
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/mp_back.py
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/mp_common.py
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/mp_front.py
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/os_mp_backend.py
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/pip_gui.py
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/serial_connection.py
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/ssh_connection.py
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/subprocess_connection.py
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/uf2dialog.py
/usr/lib/python3.11/site-packages/thonny/plugins/micropython/webrepl_connection.py
/usr/lib/python3.11/site-packages/thonny/plugins/misc_analyzers.py
/usr/lib/python3.11/site-packages/thonny/plugins/mypy
/usr/lib/python3.11/site-packages/thonny/plugins/mypy/__init__.py
/usr/lib/python3.11/site-packages/thonny/plugins/mypy/__pycache__
/usr/lib/python3.11/site-packages/thonny/plugins/mypy/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/mypy/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/notes.py
/usr/lib/python3.11/site-packages/thonny/plugins/object_inspector.py
/usr/lib/python3.11/site-packages/thonny/plugins/outline.py
/usr/lib/python3.11/site-packages/thonny/plugins/paren_matcher.py
/usr/lib/python3.11/site-packages/thonny/plugins/pgzero_frontend.py
/usr/lib/python3.11/site-packages/thonny/plugins/pi
/usr/lib/python3.11/site-packages/thonny/plugins/pi/__init__.py
/usr/lib/python3.11/site-packages/thonny/plugins/pi/__pycache__
/usr/lib/python3.11/site-packages/thonny/plugins/pi/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/pi/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/Ukraine.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/Ukraine48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_debug-run-cursor.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_debug-run-cursor48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_debug-run.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_debug-run48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_debug-step-into.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_debug-step-into48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_debug-step-out.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_debug-step-out48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_debug-step-over.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_debug-step-over48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_document-new.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_document-new48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_document-open.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_document-open48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_document-save.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_document-save48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_media-playback-start.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_media-playback-start48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_process-stop.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_process-stop48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_quit.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_quit48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_resume.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_resume48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_scrollbar-button-down-insens.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_scrollbar-button-down.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_scrollbar-button-left-insens.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_scrollbar-button-left.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_scrollbar-button-right-insens.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_scrollbar-button-right.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_scrollbar-button-up-insens.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_scrollbar-button-up.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_window-close-act.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_window-close.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_zoom.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/_disabled_zoom48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/debug-run-cursor.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/debug-run-cursor48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/debug-run.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/debug-run48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/debug-step-into.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/debug-step-into48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/debug-step-out.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/debug-step-out48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/debug-step-over.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/debug-step-over48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/document-new.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/document-new48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/document-open.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/document-open48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/document-save.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/document-save48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/media-playback-start.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/media-playback-start48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/process-stop.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/process-stop48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/quit.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/quit48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/resume.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/resume48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/scrollbar-button-down-insens.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/scrollbar-button-down.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/scrollbar-button-left-insens.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/scrollbar-button-left.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/scrollbar-button-right-insens.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/scrollbar-button-right.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/scrollbar-button-up-insens.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/scrollbar-button-up.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/window-close-act.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/window-close.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/zoom.png
/usr/lib/python3.11/site-packages/thonny/plugins/pi/res/zoom48.png
/usr/lib/python3.11/site-packages/thonny/plugins/pip_gui.py
/usr/lib/python3.11/site-packages/thonny/plugins/prime_inventor
/usr/lib/python3.11/site-packages/thonny/plugins/prime_inventor/__init__.py
/usr/lib/python3.11/site-packages/thonny/plugins/prime_inventor/__pycache__
/usr/lib/python3.11/site-packages/thonny/plugins/prime_inventor/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/prime_inventor/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/prime_inventor/__pycache__/prime_inventor_back.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/prime_inventor/__pycache__/prime_inventor_back.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/prime_inventor/api_stubs
/usr/lib/python3.11/site-packages/thonny/plugins/prime_inventor/api_stubs/hub.pyi
/usr/lib/python3.11/site-packages/thonny/plugins/prime_inventor/prime_inventor_back.py
/usr/lib/python3.11/site-packages/thonny/plugins/printing
/usr/lib/python3.11/site-packages/thonny/plugins/printing/__init__.py
/usr/lib/python3.11/site-packages/thonny/plugins/printing/__pycache__
/usr/lib/python3.11/site-packages/thonny/plugins/printing/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/printing/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/printing/template.html
/usr/lib/python3.11/site-packages/thonny/plugins/pylint
/usr/lib/python3.11/site-packages/thonny/plugins/pylint/__init__.py
/usr/lib/python3.11/site-packages/thonny/plugins/pylint/__pycache__
/usr/lib/python3.11/site-packages/thonny/plugins/pylint/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/pylint/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/pylint/__pycache__/messages.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/pylint/__pycache__/messages.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/pylint/messages.py
/usr/lib/python3.11/site-packages/thonny/plugins/pythontutor.py
/usr/lib/python3.11/site-packages/thonny/plugins/remove_old_data_dir.py
/usr/lib/python3.11/site-packages/thonny/plugins/replayer.py
/usr/lib/python3.11/site-packages/thonny/plugins/rp2040
/usr/lib/python3.11/site-packages/thonny/plugins/rp2040/__init__.py
/usr/lib/python3.11/site-packages/thonny/plugins/rp2040/__pycache__
/usr/lib/python3.11/site-packages/thonny/plugins/rp2040/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/rp2040/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/rp2040/__pycache__/rp2040_back.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/rp2040/__pycache__/rp2040_back.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/rp2040/api_stubs
/usr/lib/python3.11/site-packages/thonny/plugins/rp2040/api_stubs/mp-1.18-pico.txt
/usr/lib/python3.11/site-packages/thonny/plugins/rp2040/api_stubs/rp2.pyi
/usr/lib/python3.11/site-packages/thonny/plugins/rp2040/rp2040_back.py
/usr/lib/python3.11/site-packages/thonny/plugins/rpi_pico
/usr/lib/python3.11/site-packages/thonny/plugins/rpi_pico/__init__.py
/usr/lib/python3.11/site-packages/thonny/plugins/rpi_pico/__pycache__
/usr/lib/python3.11/site-packages/thonny/plugins/rpi_pico/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/rpi_pico/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/run_debug_config_page.py
/usr/lib/python3.11/site-packages/thonny/plugins/shell_config_page.py
/usr/lib/python3.11/site-packages/thonny/plugins/shell_macro.py
/usr/lib/python3.11/site-packages/thonny/plugins/statement_boxes.py
/usr/lib/python3.11/site-packages/thonny/plugins/stdlib_error_helpers.py
/usr/lib/python3.11/site-packages/thonny/plugins/system_shell
/usr/lib/python3.11/site-packages/thonny/plugins/system_shell/__init__.py
/usr/lib/python3.11/site-packages/thonny/plugins/system_shell/__pycache__
/usr/lib/python3.11/site-packages/thonny/plugins/system_shell/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/system_shell/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/system_shell/__pycache__/explain_environment.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/system_shell/__pycache__/explain_environment.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/plugins/system_shell/explain_environment.py
/usr/lib/python3.11/site-packages/thonny/plugins/terminal_config_page.py
/usr/lib/python3.11/site-packages/thonny/plugins/theme_and_font_config_page.py
/usr/lib/python3.11/site-packages/thonny/plugins/thonny_folders.py
/usr/lib/python3.11/site-packages/thonny/plugins/todo_view.py
/usr/lib/python3.11/site-packages/thonny/plugins/tomorrow_syntax_theme.py
/usr/lib/python3.11/site-packages/thonny/plugins/variables.py
/usr/lib/python3.11/site-packages/thonny/res
/usr/lib/python3.11/site-packages/thonny/res/16x16-blank.gif
/usr/lib/python3.11/site-packages/thonny/res/1x1-white.gif
/usr/lib/python3.11/site-packages/thonny/res/PrintLnkTarget.vbs
/usr/lib/python3.11/site-packages/thonny/res/Ukraine.png
/usr/lib/python3.11/site-packages/thonny/res/Ukraine_2x.png
/usr/lib/python3.11/site-packages/thonny/res/__pycache__
/usr/lib/python3.11/site-packages/thonny/res/__pycache__/_create_disabled_variants.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/res/__pycache__/_create_disabled_variants.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/res/_create_disabled_variants.py
/usr/lib/python3.11/site-packages/thonny/res/_disabled_16x16-blank.gif
/usr/lib/python3.11/site-packages/thonny/res/_disabled_1x1-white.gif
/usr/lib/python3.11/site-packages/thonny/res/_disabled_arrow-down.gif
/usr/lib/python3.11/site-packages/thonny/res/_disabled_birdseye.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_boxdot.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_boxdot_light.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_boxminus.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_boxminus_light.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_boxplus.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_boxplus_light.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_boxx.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_boxx_light.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_broken.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_closed-folder.gif
/usr/lib/python3.11/site-packages/thonny/res/_disabled_debug-current-script.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_debug-current-script_2x.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_delete.gif
/usr/lib/python3.11/site-packages/thonny/res/_disabled_folder.gif
/usr/lib/python3.11/site-packages/thonny/res/_disabled_generic-file.gif
/usr/lib/python3.11/site-packages/thonny/res/_disabled_hard-drive.gif
/usr/lib/python3.11/site-packages/thonny/res/_disabled_harddisk.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_harddisk_2x.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_help.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_help_2x.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_information.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_information_2x.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_nav-backward.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_nav-backward_2x.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_nav-forward.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_nav-forward_2x.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_new-file.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_new-file_Linux.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_new-file_Linux_2x.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_open-file.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_open-file_Linux.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_open-file_Linux_2x.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_open_folder.gif
/usr/lib/python3.11/site-packages/thonny/res/_disabled_outline-class.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_outline-class_2x.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_outline-method.gif
/usr/lib/python3.11/site-packages/thonny/res/_disabled_python-file.gif
/usr/lib/python3.11/site-packages/thonny/res/_disabled_python-icon.gif
/usr/lib/python3.11/site-packages/thonny/res/_disabled_quit.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_quit_2x.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_resume.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_resume_2x.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_run-current-script.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_run-current-script_2x.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_run-to-cursor.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_run-to-cursor_2x.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_save-file.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_save-file_2x_alt.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_save-file_Linux.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_save-file_Linux_2x.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_save-file_alt.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_star.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_star_2x.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_step-into.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_step-into_2x.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_step-out.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_step-out_2x.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_step-over.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_step-over_2x.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_stop.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_stop_2x.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_tab-close-active-clam-dark.gif
/usr/lib/python3.11/site-packages/thonny/res/_disabled_tab-close-active-clam.gif
/usr/lib/python3.11/site-packages/thonny/res/_disabled_tab-close-active.gif
/usr/lib/python3.11/site-packages/thonny/res/_disabled_tab-close-clam.gif
/usr/lib/python3.11/site-packages/thonny/res/_disabled_tab-close.gif
/usr/lib/python3.11/site-packages/thonny/res/_disabled_terminal.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_terminal_2x.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_text-file.gif
/usr/lib/python3.11/site-packages/thonny/res/_disabled_thonny.png
/usr/lib/python3.11/site-packages/thonny/res/_disabled_zoom.png
/usr/lib/python3.11/site-packages/thonny/res/arrow-down.gif
/usr/lib/python3.11/site-packages/thonny/res/birdseye.png
/usr/lib/python3.11/site-packages/thonny/res/boxdot.png
/usr/lib/python3.11/site-packages/thonny/res/boxdot_light.png
/usr/lib/python3.11/site-packages/thonny/res/boxminus.png
/usr/lib/python3.11/site-packages/thonny/res/boxminus_light.png
/usr/lib/python3.11/site-packages/thonny/res/boxplus.png
/usr/lib/python3.11/site-packages/thonny/res/boxplus_light.png
/usr/lib/python3.11/site-packages/thonny/res/boxx.png
/usr/lib/python3.11/site-packages/thonny/res/boxx_light.png
/usr/lib/python3.11/site-packages/thonny/res/broken.png
/usr/lib/python3.11/site-packages/thonny/res/closed-folder.gif
/usr/lib/python3.11/site-packages/thonny/res/debug-current-script.png
/usr/lib/python3.11/site-packages/thonny/res/debug-current-script_2x.png
/usr/lib/python3.11/site-packages/thonny/res/delete.gif
/usr/lib/python3.11/site-packages/thonny/res/folder.gif
/usr/lib/python3.11/site-packages/thonny/res/generic-file.gif
/usr/lib/python3.11/site-packages/thonny/res/hard-drive.gif
/usr/lib/python3.11/site-packages/thonny/res/harddisk.png
/usr/lib/python3.11/site-packages/thonny/res/harddisk_2x.png
/usr/lib/python3.11/site-packages/thonny/res/help.png
/usr/lib/python3.11/site-packages/thonny/res/help_2x.png
/usr/lib/python3.11/site-packages/thonny/res/information.png
/usr/lib/python3.11/site-packages/thonny/res/information_2x.png
/usr/lib/python3.11/site-packages/thonny/res/nav-backward.png
/usr/lib/python3.11/site-packages/thonny/res/nav-backward_2x.png
/usr/lib/python3.11/site-packages/thonny/res/nav-forward.png
/usr/lib/python3.11/site-packages/thonny/res/nav-forward_2x.png
/usr/lib/python3.11/site-packages/thonny/res/new-file.png
/usr/lib/python3.11/site-packages/thonny/res/new-file_Linux.png
/usr/lib/python3.11/site-packages/thonny/res/new-file_Linux_2x.png
/usr/lib/python3.11/site-packages/thonny/res/open-file.png
/usr/lib/python3.11/site-packages/thonny/res/open-file_Linux.png
/usr/lib/python3.11/site-packages/thonny/res/open-file_Linux_2x.png
/usr/lib/python3.11/site-packages/thonny/res/open_folder.gif
/usr/lib/python3.11/site-packages/thonny/res/outline-class.png
/usr/lib/python3.11/site-packages/thonny/res/outline-class_2x.png
/usr/lib/python3.11/site-packages/thonny/res/outline-method.gif
/usr/lib/python3.11/site-packages/thonny/res/python-file.gif
/usr/lib/python3.11/site-packages/thonny/res/python-icon.gif
/usr/lib/python3.11/site-packages/thonny/res/python-icon_2x.png
/usr/lib/python3.11/site-packages/thonny/res/quit.png
/usr/lib/python3.11/site-packages/thonny/res/quit_2x.png
/usr/lib/python3.11/site-packages/thonny/res/resume.png
/usr/lib/python3.11/site-packages/thonny/res/resume_2x.png
/usr/lib/python3.11/site-packages/thonny/res/run-current-script.png
/usr/lib/python3.11/site-packages/thonny/res/run-current-script_2x.png
/usr/lib/python3.11/site-packages/thonny/res/run-to-cursor.png
/usr/lib/python3.11/site-packages/thonny/res/run-to-cursor_2x.png
/usr/lib/python3.11/site-packages/thonny/res/save-file.png
/usr/lib/python3.11/site-packages/thonny/res/save-file_2x_alt.png
/usr/lib/python3.11/site-packages/thonny/res/save-file_Linux.png
/usr/lib/python3.11/site-packages/thonny/res/save-file_Linux_2x.png
/usr/lib/python3.11/site-packages/thonny/res/save-file_alt.png
/usr/lib/python3.11/site-packages/thonny/res/star.png
/usr/lib/python3.11/site-packages/thonny/res/star_2x.png
/usr/lib/python3.11/site-packages/thonny/res/step-into.png
/usr/lib/python3.11/site-packages/thonny/res/step-into_2x.png
/usr/lib/python3.11/site-packages/thonny/res/step-out.png
/usr/lib/python3.11/site-packages/thonny/res/step-out_2x.png
/usr/lib/python3.11/site-packages/thonny/res/step-over.png
/usr/lib/python3.11/site-packages/thonny/res/step-over_2x.png
/usr/lib/python3.11/site-packages/thonny/res/stop.png
/usr/lib/python3.11/site-packages/thonny/res/stop_2x.png
/usr/lib/python3.11/site-packages/thonny/res/tab-close-active-clam-dark.gif
/usr/lib/python3.11/site-packages/thonny/res/tab-close-active-clam.gif
/usr/lib/python3.11/site-packages/thonny/res/tab-close-active.gif
/usr/lib/python3.11/site-packages/thonny/res/tab-close-clam.gif
/usr/lib/python3.11/site-packages/thonny/res/tab-close.gif
/usr/lib/python3.11/site-packages/thonny/res/terminal.png
/usr/lib/python3.11/site-packages/thonny/res/terminal_2x.png
/usr/lib/python3.11/site-packages/thonny/res/text-file.gif
/usr/lib/python3.11/site-packages/thonny/res/thonny.ico
/usr/lib/python3.11/site-packages/thonny/res/thonny.png
/usr/lib/python3.11/site-packages/thonny/res/thonny_small.ico
/usr/lib/python3.11/site-packages/thonny/res/zoom.png
/usr/lib/python3.11/site-packages/thonny/roughparse.py
/usr/lib/python3.11/site-packages/thonny/rst_utils.py
/usr/lib/python3.11/site-packages/thonny/running.py
/usr/lib/python3.11/site-packages/thonny/shell.py
/usr/lib/python3.11/site-packages/thonny/terminal.py
/usr/lib/python3.11/site-packages/thonny/test
/usr/lib/python3.11/site-packages/thonny/test/__init__.py
/usr/lib/python3.11/site-packages/thonny/test/__pycache__
/usr/lib/python3.11/site-packages/thonny/test/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/test/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/test/__pycache__/test_common.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/test/__pycache__/test_common.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/test/plugins
/usr/lib/python3.11/site-packages/thonny/test/plugins/__init__.py
/usr/lib/python3.11/site-packages/thonny/test/plugins/__pycache__
/usr/lib/python3.11/site-packages/thonny/test/plugins/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/test/plugins/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/test/plugins/__pycache__/test_locals_marker.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/test/plugins/__pycache__/test_locals_marker.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/test/plugins/__pycache__/test_name_highlighter.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/test/plugins/__pycache__/test_name_highlighter.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/test/plugins/__pycache__/test_pip_gui.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/test/plugins/__pycache__/test_pip_gui.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/test/plugins/test_locals_marker.py
/usr/lib/python3.11/site-packages/thonny/test/plugins/test_name_highlighter.py
/usr/lib/python3.11/site-packages/thonny/test/plugins/test_pip_gui.py
/usr/lib/python3.11/site-packages/thonny/test/test_common.py
/usr/lib/python3.11/site-packages/thonny/tktextext.py
/usr/lib/python3.11/site-packages/thonny/token_utils.py
/usr/lib/python3.11/site-packages/thonny/udisks.py
/usr/lib/python3.11/site-packages/thonny/ui_utils.py
/usr/lib/python3.11/site-packages/thonny/vendored_libs
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock/__init__.py
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock/__pycache__
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock/__pycache__/_api.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock/__pycache__/_api.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock/__pycache__/_error.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock/__pycache__/_error.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock/__pycache__/_soft.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock/__pycache__/_soft.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock/__pycache__/_unix.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock/__pycache__/_unix.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock/__pycache__/_util.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock/__pycache__/_util.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock/__pycache__/_windows.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock/__pycache__/_windows.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock/__pycache__/version.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock/__pycache__/version.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock/_api.py
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock/_error.py
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock/_soft.py
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock/_unix.py
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock/_util.py
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock/_windows.py
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock/py.typed
/usr/lib/python3.11/site-packages/thonny/vendored_libs/filelock/version.py
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__init__.py
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__main__.py
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__pycache__
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__pycache__/__main__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__pycache__/__main__.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__pycache__/adapters.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__pycache__/adapters.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__pycache__/bare_metal.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__pycache__/bare_metal.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__pycache__/common.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__pycache__/common.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__pycache__/connection.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__pycache__/connection.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__pycache__/parser.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__pycache__/parser.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__pycache__/proxy.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__pycache__/proxy.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__pycache__/serial_connection.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__pycache__/serial_connection.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__pycache__/session.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__pycache__/session.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__pycache__/util.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__pycache__/util.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__pycache__/webrepl_connection.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/__pycache__/webrepl_connection.cpython-311.pyc
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/adapters.py
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/bare_metal.py
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/common.py
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/connection.py
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/parser.py
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/proxy.py
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/serial_connection.py
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/session.py
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/util.py
/usr/lib/python3.11/site-packages/thonny/vendored_libs/pipkin/webrepl_connection.py
/usr/lib/python3.11/site-packages/thonny/workbench.py
/usr/lib/python3.11/site-packages/thonny/workdlg.py
/usr/share/applications/thonny.desktop
/usr/share/doc/packages/thonny
/usr/share/doc/packages/thonny/CHANGELOG.rst
/usr/share/doc/packages/thonny/CREDITS.rst
/usr/share/icons/hicolor/128x128/apps/thonny.png
/usr/share/icons/hicolor/16x16/apps/thonny.png
/usr/share/icons/hicolor/192x192/apps/thonny.png
/usr/share/icons/hicolor/22x22/apps/thonny.png
/usr/share/icons/hicolor/256x256/apps/thonny.png
/usr/share/icons/hicolor/32x32/apps/thonny.png
/usr/share/icons/hicolor/48x48/apps/thonny.png
/usr/share/icons/hicolor/64x64/apps/thonny.png
/usr/share/licenses/thonny
/usr/share/licenses/thonny/LICENSE.txt
/usr/share/metainfo/thonny.appdata.xml


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 30 23:40:23 2024