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

python311-rope-1.12.0-1.3 RPM for noarch

From OpenSuSE Ports Tumbleweed for noarch

Name: python311-rope Distribution: openSUSE:Factory:zSystems
Version: 1.12.0 Vendor: openSUSE
Release: 1.3 Build date: Sun Jan 21 12:09:36 2024
Group: Development/Languages/Python Build host: reproducible
Size: 2514411 Source RPM: python-rope-1.12.0-1.3.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/python-rope/rope
Summary: A python refactoring library
Rope is a python refactoring library.

* Rope aims to provide powerful and safe refactoring
* Rope is light on dependency, Rope only depends on Python itself
* Unlike PyRight or PyLance, Rope does not depend on Node.js
* Unlike PyLance or PyCharm, Rope is open source.
* Unlike PyRight and PyLance, Rope is written in Python itself,
  so if you experience problems, you would be able to debug and
  hack it yourself in a language that you are already familiar with
* In comparison to Jedi, Rope is focused on refactoring. While Jedi
  provides some basic refactoring capabilities, Rope supports many
  more advanced refactoring operations and options that Jedi does not.

Provides

Requires

License

LGPL-3.0-or-later

Changelog

* Sun Jan 21 2024 Dirk Müller <dmueller@suse.com>
  - update to 1.12.0:
    * #733 skip directories with perm error when building
      autoimport index (@MrBago)
    * #722, #723 Remove site-packages from packages search tree
      (@tkrabel)
    * #738 Implement os.PathLike on Resource (@lieryan)
    * #739, #736 Ensure autoimport requests uses indexes (@lieryan)
    * #734, #735 raise exception when extracting the start of a
      block without the end
* Fri Dec 29 2023 Dirk Müller <dmueller@suse.com>
  - update to 1.11.0:
    * #710, #561 Implement `except*` syntax
    * #711 allow building documentation without having rope module
      installed
    * #719 Allows the in-memory db to be shared across threads
    * #720 create one sqlite3.Connection per thread using a thread
      local
    * #715 change AutoImport's `get_modules` to be case sensitive
    * #708, #709 Add support for Python 3.12 (@lieryan)
* Thu Nov 09 2023 Giacomo Comes <gcomes.obs@gmail.com>
  - add sle15_python_module_pythons
* Sun Sep 03 2023 Martin Schreiner <martin.schreiner@suse.com>
  - Update to 1.9.0:
    - Changes from 1.9.0:
    * Implement nonlocal keyword
    * Automatically purge autoimport.db when there is schema change
    - Changes from 1.8.0:
    * Install pre-commit hooks on rope repository
    * Remove unused init() methods
    * Reformat using black 23.1.0
    * Fix/supress all mypy complaints
    * Remove a do-nothing statement in soi._handle_first_parameter
    * Fix autoimport not scanning packages recursively
    - Changes from 1.7.0:
    * Implement MoveGlobal using string as destination module names
    * Fix parsing of octal literal
    * Fix fstrings with mismatched parens
    * Fix renaming kwargs when refactoring from imports
    * Remove init from import statement when using sqlite autoimport
    * Update readme to reflect 1.0 has been released
* Fri Dec 30 2022 Ben Greiner <code@bnavigator.de>
  - Update to 1.6.0
    [#]# New features & Enhancements
    * #559, #560 Improve handling of whitespace in import and
      from-import statements (@lieryan)
    * #566, #567, #597 Fix variables in kwonlyargs and posonlyargs
      not being correctly passed to extracted methods (@lieryan)
    [#]# Unit Test
    * #589, #596 Fix issue with sample_project() creating directories
      where it shouldn't when running tests (@lieryan)
    * #547 Add config file for linters
    * #593 Remove only_for decorator for all python versions less
      than 3.7 (@edreamleo)
    [#]# Tech Debt
    [#]## Code quality
    * #546 Remove unused vars in test (@lieryan, @edreamleo)
    * #551, #552 Numerous flake8 linter complaints (@edreamleo)
    * #558 Fix typos (@kianmeng)
    * #583, #584 More consistent import style (@edreamleo)
    [#]## Python 2-related tech debt
    * #533 Refactoring to Remove usage of unicode type (@lieryan)
    * #549, #553 Remove rope.base.utils.pycompat (@dreamleo)
    * #555 Fix some python2-isms (@lieryan)
    [#]## Rope's AST Wrapper
    * #536, #578 walk does not return a value (@edreamleo)
    * #537, #538 Remove special case code from walk (@edreamleo)
    * #581 Remove functions in rope.base.ast that has functionally
      identical implementation in stdlib's ast (@lieryan, @edreamleo)
    * #582 Refactoring rope.base.ast and remove rope.base.astutils
      (@lieryan, @edreamleo)
    [#]## pynames and pyobjects
    * #569, #572 rename pynames to pynamesdef in pyobjectsdef.ph
      (@edreamleo)
  - Release 1.5.1
    * #531 Add alternative way to retrieve version number from
      pyproject.toml
  - Release 1.5.0
    * #492 Feat: Global configuration support (@bagel897)
    * #519 Move pytest to pyproject.toml (@gliptak, @bagel897)
    * #509 Fix read/write analysis of the left-hand side of an
      augmented assignment (@lieryan)
    * #522 Implement patchedast parsing of MatchMapping (@lieryan)
    * #514 Fix inlining dictionary with inline comment (@lieryan)
  - Release 1.4.0
    * #506, #507 Fix issue with parsing function call args list
    * #411, #505 Fix extracting generator without parens
    * #18, #510 When the function is a builtin function, the call
      parameter's name was sometimes incorrectly identified as an
      AssignedName. This led to rename refactoring incorrectly
      renaming these parameters.
  - Release 1.3.0
    * #496, #497 Add MatMul operator to patchedast
    * #495 Fix autoimport collection for compiled modules
    * #501, #502 Autoimport improvements
  - Release 1.2.0
    [#]# New feature
    * #473 Pyproject.toml support (@bageljrkhanofemus)
    * #489 Rope now publishes documentations to rope.readthedocs.org
      (@bageljrkhanofemus)
    * #490 Migrate from setup.py to pyproject.toml
      (@bageljrkhanofemus)
    [#]# Improvement
    * #479 Add ABC and type hints for TaskHandle and JobSet
      (@bageljrkhanofemus)
    * #486 Drop Python 2 support (@bageljrkhanofemus, @lieryan)
    * #487 Improved value inference of all declaration (@lieryan)
    * #424 Add some basic repr to make it easier for debugging
      (@lieryan)
  - Release 1.1.1
    * #476 Fix rope.contrib.autoimport package missing from release
      (@bageljrkhanofemus)
  - Release 1.1.0
    [#]# New feature
    * #464 Add new autoimport implementation that uses a sqllite3
      database, cache all available modules quickly, search for names
      and produce import statements, sort import statements.
      (@bageljrkhanofemus)
    [#]# Bug fixes
    * #419 Fix bug while moving decorated function (@dryobates)
    * #439 Fix bug while moving decorated class (@dryobates)
    * #461 Fix bug while extracting method with list comprehension in
      class method (@dryobates)
    * #440 Fix bug while inlining function with type hints in
      signature (@dryobates)
    [#]# Deprecation
    * The pickle-based autoimport implementation is still the
      default, but will be deprecated sometime in the future.
  - Release 1.0.0
    * Date: 2022-04-08
    [#]# Syntax support
    * #400 Drop Python 2.7 support
    [#]# Bug fixes
    * #459 Fix bug while extracting method with augmented assignment
      to subscript in try block (@dryobates)
  - Release 0.23.0
    [#]# Syntax support
    * #451, $456 Implement structural pattern matching (PEP634)
      (@lieryan)
    * #458 Improve the heuristic for joining lines when extracting
      one line expression (@lieryan)
    [#]# Bug fixes
    * #134, #453 Preserve newline format when writing files
      (@lieryan)
    * #457 Fix extract info collection for list comprehension with
      multiple targets (@lieryan)
* Sun Feb 20 2022 Dirk Müller <dmueller@suse.com>
  - update to 0.22.0:
    * #443 Implement `yield from` syntax support to patchedast.py
    * #445, #446 Improve empty tuple and handling of parentheses
    around tuple
    * #270, #432 Fix rename import statement with dots and as keyword
* Tue Oct 26 2021 Matej Cepl <mcepl@suse.com>
  - Update to 0.21.0:
    - #392, #316 Handle `global` keyword when extracting method
      (@climbus)
    - context manager:
    - #387, #433 Implement extract refactoring for code
      containing `async with` (@lieryan)
    - #398, #104 Fix parsing of nested `with` statement/context
      manager (@climbus)
    - list/set/dict/generator comprehension scope issues:
    - #422 Added scopes for comprehension expressions as part of
      [#293] (@climbus)
    - #426, #429 Added support for checking scopes by offset as
      part of #293 (@climbus)
    - #293, #430 Fix renaming global var affects list
      comprehension (@climbus)
    - #395, #315 Reuse of variable in comprehensions confuses
      method extraction (@climbus)
    - #436 Fix error `TypeError: 'PyDefinedObject' object is not
      subscriptable` (@lieryan)
    - f-string:
    - #303, #420 Fix inlining into f-string containing quote
      characters (@lieryan)
    - inline assignment/walrus operator:
    - #423 Fix `AttributeError: '_ExpressionVisitor' object has
      no attribute 'defineds'` (@lieryan)
    - #391, #376 Fix improper replacement when extracting attribute
      access expression with `similar=True` (@climbus)
    - #396 Fix improper replacement when extracting index access
      expression with `similar=True` (@lieryan)
    - #434 Move read() to FileSystemCommands
    - #410 Setup all-contributors bot (@lieryan)
    - #404 Blacken source code, rope now follows black code style
      (@climbus)
    - #399 Add Github Actions to enforce black code style
    - #403 Remove plain 'unittest' only runner
* Tue Oct 05 2021 Matej Cepl <mcepl@suse.com>
  - Update to 0.20.0:
    - Under the new management: @lieryan kindly decided to take
      over the maintaining the package.
    - #377 Added the ability to extract method to
      @staticmethod/@classmethod (@climbus)
    - #374 Changed Organize import to keep variables listed in
      `__all__`
    - Change default .ropeproject/config.py to ignore code in
      folders named .venv and venv (@0x1e02)
    - #372 Add extract method refactoring of code containing `exec`
      (@ceridwen)
    - #389 Add extract method refactoring of code containing `async
      def`, `async for`, and `await`
    - #365, #386 Support extract method of expressions containing
      inline assignment (walrus operator)
    - #380 Fix list of variables that are returned and/or turned
      into argument when extracting method in a loop
* Tue Oct 05 2021 Matej Cepl <mcepl@suse.com>
  - Update to 0.20.0:
    - Under the new management: @lieryan kindly decided to take
      over the maintaining of the package.
    - #377 Added the ability to extract method to
      @staticmethod/@classmethod (@climbus)
    - #374 Changed Organize import to keep variables listed in
      `__all__`
    - Change default .ropeproject/config.py to ignore code in
      folders named .venv and venv (@0x1e02)
    - #372 Add extract method refactoring of code containing `exec`
      (@ceridwen)
    - #389 Add extract method refactoring of code containing `async
      def`, `async for`, and `await`
    - #365, #386 Support extract method of expressions containing
      inline assignment (walrus operator)
    - #380 Fix list of variables that are returned and/or turned
      into argument when extracting method in a loop
* Sun Apr 18 2021 Matej Cepl <mcepl@suse.com>
  - Update to 0.19.0:
    - fixes #337
    - Fix AttributeError lineno
    - Python 3.9 ast changes
    - create_generate with goal_resource param
    - Fix relative import offset calculation
    - Fix missinge lineno attribute for AssignedName ast node
    - Added _NamedExpr into `patchedast.py`
    - Add support for the walrus operator.
    - fix test case name for `test_ann_assign_node_without_target`
    - Returned _AnnAssign and checked for support assignment without value
    - fixed version restriction in tests for NamedExpr
    - Removed AnnAssign, added NeamedExpr, testa are made
    - Added _AnnAsign into `patchedast.py`
    - Extract augmented assignment
    - Fix handling of dict rename in Python 2.x
    - Improve handling of generalized dict unpacking during dict rename
    - Add expected failure test for comprehension variable scopes
    - Implement basic scoping and rename for set and dict comprehension
    - Visit subexpressions of comprehensions to collect names for scopes
    - Implement rename of inline assignment expression
    - Implement basic scoping and renaming of list and generator
      comprehension loop variables
    - Implement f-string extract refactoring
    - Refactor consume_joined_string and also fix missing
      ast.JoinedStr/FormattedValue in older python
    - Fix some f-string corner cases
    - Implement PEP-448 generalized dict-unpacking
  - Removed upstreamed rope-pr333-py39.patch.
* Wed Mar 31 2021 Ben Greiner <code@bnavigator.de>
  - Add rope-pr333-py39.patch for python39 compatibility
    gh#python-rope/rope#333

Files

/usr/lib/python3.11/site-packages/rope
/usr/lib/python3.11/site-packages/rope-1.12.0.dist-info
/usr/lib/python3.11/site-packages/rope-1.12.0.dist-info/COPYING
/usr/lib/python3.11/site-packages/rope-1.12.0.dist-info/INSTALLER
/usr/lib/python3.11/site-packages/rope-1.12.0.dist-info/METADATA
/usr/lib/python3.11/site-packages/rope-1.12.0.dist-info/RECORD
/usr/lib/python3.11/site-packages/rope-1.12.0.dist-info/REQUESTED
/usr/lib/python3.11/site-packages/rope-1.12.0.dist-info/WHEEL
/usr/lib/python3.11/site-packages/rope-1.12.0.dist-info/top_level.txt
/usr/lib/python3.11/site-packages/rope/__init__.py
/usr/lib/python3.11/site-packages/rope/__pycache__
/usr/lib/python3.11/site-packages/rope/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base
/usr/lib/python3.11/site-packages/rope/base/__init__.py
/usr/lib/python3.11/site-packages/rope/base/__pycache__
/usr/lib/python3.11/site-packages/rope/base/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/arguments.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/arguments.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/ast.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/ast.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/builtins.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/builtins.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/change.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/change.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/codeanalyze.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/codeanalyze.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/evaluate.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/evaluate.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/exceptions.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/exceptions.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/fscommands.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/fscommands.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/history.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/history.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/libutils.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/libutils.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/nameanalyze.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/nameanalyze.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/prefs.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/prefs.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/project.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/project.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/pycore.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/pycore.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/pynames.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/pynames.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/pynamesdef.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/pynamesdef.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/pyobjects.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/pyobjects.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/pyobjectsdef.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/pyobjectsdef.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/pyscopes.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/pyscopes.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/resourceobserver.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/resourceobserver.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/resources.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/resources.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/serializer.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/serializer.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/simplify.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/simplify.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/stdmods.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/stdmods.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/taskhandle.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/taskhandle.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/versioning.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/versioning.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/worder.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/__pycache__/worder.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/arguments.py
/usr/lib/python3.11/site-packages/rope/base/ast.py
/usr/lib/python3.11/site-packages/rope/base/builtins.py
/usr/lib/python3.11/site-packages/rope/base/change.py
/usr/lib/python3.11/site-packages/rope/base/codeanalyze.py
/usr/lib/python3.11/site-packages/rope/base/evaluate.py
/usr/lib/python3.11/site-packages/rope/base/exceptions.py
/usr/lib/python3.11/site-packages/rope/base/fscommands.py
/usr/lib/python3.11/site-packages/rope/base/history.py
/usr/lib/python3.11/site-packages/rope/base/libutils.py
/usr/lib/python3.11/site-packages/rope/base/nameanalyze.py
/usr/lib/python3.11/site-packages/rope/base/oi
/usr/lib/python3.11/site-packages/rope/base/oi/__init__.py
/usr/lib/python3.11/site-packages/rope/base/oi/__pycache__
/usr/lib/python3.11/site-packages/rope/base/oi/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/__pycache__/doa.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/__pycache__/doa.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/__pycache__/memorydb.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/__pycache__/memorydb.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/__pycache__/objectdb.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/__pycache__/objectdb.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/__pycache__/objectinfo.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/__pycache__/objectinfo.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/__pycache__/runmod.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/__pycache__/runmod.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/__pycache__/soa.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/__pycache__/soa.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/__pycache__/soi.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/__pycache__/soi.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/__pycache__/transform.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/__pycache__/transform.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/doa.py
/usr/lib/python3.11/site-packages/rope/base/oi/memorydb.py
/usr/lib/python3.11/site-packages/rope/base/oi/objectdb.py
/usr/lib/python3.11/site-packages/rope/base/oi/objectinfo.py
/usr/lib/python3.11/site-packages/rope/base/oi/runmod.py
/usr/lib/python3.11/site-packages/rope/base/oi/soa.py
/usr/lib/python3.11/site-packages/rope/base/oi/soi.py
/usr/lib/python3.11/site-packages/rope/base/oi/transform.py
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/__init__.py
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/__pycache__
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/__pycache__/evaluate.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/__pycache__/evaluate.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/__pycache__/factory.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/__pycache__/factory.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/__pycache__/interfaces.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/__pycache__/interfaces.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/__pycache__/utils.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/__pycache__/utils.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/evaluate.py
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/factory.py
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/interfaces.py
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/providers
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/providers/__init__.py
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/providers/__pycache__
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/providers/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/providers/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/providers/__pycache__/composite.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/providers/__pycache__/composite.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/providers/__pycache__/docstrings.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/providers/__pycache__/docstrings.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/providers/__pycache__/inheritance.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/providers/__pycache__/inheritance.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/providers/__pycache__/interfaces.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/providers/__pycache__/interfaces.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/providers/__pycache__/numpydocstrings.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/providers/__pycache__/numpydocstrings.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/providers/__pycache__/pep0484_type_comments.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/providers/__pycache__/pep0484_type_comments.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/providers/composite.py
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/providers/docstrings.py
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/providers/inheritance.py
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/providers/interfaces.py
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/providers/numpydocstrings.py
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/providers/pep0484_type_comments.py
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/resolvers
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/resolvers/__init__.py
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/resolvers/__pycache__
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/resolvers/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/resolvers/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/resolvers/__pycache__/composite.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/resolvers/__pycache__/composite.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/resolvers/__pycache__/interfaces.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/resolvers/__pycache__/interfaces.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/resolvers/__pycache__/types.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/resolvers/__pycache__/types.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/resolvers/composite.py
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/resolvers/interfaces.py
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/resolvers/types.py
/usr/lib/python3.11/site-packages/rope/base/oi/type_hinting/utils.py
/usr/lib/python3.11/site-packages/rope/base/prefs.py
/usr/lib/python3.11/site-packages/rope/base/project.py
/usr/lib/python3.11/site-packages/rope/base/pycore.py
/usr/lib/python3.11/site-packages/rope/base/pynames.py
/usr/lib/python3.11/site-packages/rope/base/pynamesdef.py
/usr/lib/python3.11/site-packages/rope/base/pyobjects.py
/usr/lib/python3.11/site-packages/rope/base/pyobjectsdef.py
/usr/lib/python3.11/site-packages/rope/base/pyscopes.py
/usr/lib/python3.11/site-packages/rope/base/resourceobserver.py
/usr/lib/python3.11/site-packages/rope/base/resources.py
/usr/lib/python3.11/site-packages/rope/base/serializer.py
/usr/lib/python3.11/site-packages/rope/base/simplify.py
/usr/lib/python3.11/site-packages/rope/base/stdmods.py
/usr/lib/python3.11/site-packages/rope/base/taskhandle.py
/usr/lib/python3.11/site-packages/rope/base/utils
/usr/lib/python3.11/site-packages/rope/base/utils/__init__.py
/usr/lib/python3.11/site-packages/rope/base/utils/__pycache__
/usr/lib/python3.11/site-packages/rope/base/utils/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/utils/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/utils/__pycache__/datastructures.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/base/utils/__pycache__/datastructures.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/base/utils/datastructures.py
/usr/lib/python3.11/site-packages/rope/base/versioning.py
/usr/lib/python3.11/site-packages/rope/base/worder.py
/usr/lib/python3.11/site-packages/rope/contrib
/usr/lib/python3.11/site-packages/rope/contrib/__init__.py
/usr/lib/python3.11/site-packages/rope/contrib/__pycache__
/usr/lib/python3.11/site-packages/rope/contrib/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/contrib/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/contrib/__pycache__/changestack.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/contrib/__pycache__/changestack.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/contrib/__pycache__/codeassist.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/contrib/__pycache__/codeassist.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/contrib/__pycache__/finderrors.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/contrib/__pycache__/finderrors.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/contrib/__pycache__/findit.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/contrib/__pycache__/findit.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/contrib/__pycache__/fixmodnames.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/contrib/__pycache__/fixmodnames.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/contrib/__pycache__/fixsyntax.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/contrib/__pycache__/fixsyntax.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/contrib/__pycache__/generate.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/contrib/__pycache__/generate.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/contrib/autoimport
/usr/lib/python3.11/site-packages/rope/contrib/autoimport/__init__.py
/usr/lib/python3.11/site-packages/rope/contrib/autoimport/__pycache__
/usr/lib/python3.11/site-packages/rope/contrib/autoimport/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/contrib/autoimport/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/contrib/autoimport/__pycache__/defs.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/contrib/autoimport/__pycache__/defs.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/contrib/autoimport/__pycache__/models.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/contrib/autoimport/__pycache__/models.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/contrib/autoimport/__pycache__/parse.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/contrib/autoimport/__pycache__/parse.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/contrib/autoimport/__pycache__/pickle.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/contrib/autoimport/__pycache__/pickle.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/contrib/autoimport/__pycache__/sqlite.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/contrib/autoimport/__pycache__/sqlite.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/contrib/autoimport/__pycache__/utils.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/contrib/autoimport/__pycache__/utils.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/contrib/autoimport/defs.py
/usr/lib/python3.11/site-packages/rope/contrib/autoimport/models.py
/usr/lib/python3.11/site-packages/rope/contrib/autoimport/parse.py
/usr/lib/python3.11/site-packages/rope/contrib/autoimport/pickle.py
/usr/lib/python3.11/site-packages/rope/contrib/autoimport/sqlite.py
/usr/lib/python3.11/site-packages/rope/contrib/autoimport/utils.py
/usr/lib/python3.11/site-packages/rope/contrib/changestack.py
/usr/lib/python3.11/site-packages/rope/contrib/codeassist.py
/usr/lib/python3.11/site-packages/rope/contrib/finderrors.py
/usr/lib/python3.11/site-packages/rope/contrib/findit.py
/usr/lib/python3.11/site-packages/rope/contrib/fixmodnames.py
/usr/lib/python3.11/site-packages/rope/contrib/fixsyntax.py
/usr/lib/python3.11/site-packages/rope/contrib/generate.py
/usr/lib/python3.11/site-packages/rope/refactor
/usr/lib/python3.11/site-packages/rope/refactor/__init__.py
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/change_signature.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/change_signature.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/encapsulate_field.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/encapsulate_field.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/extract.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/extract.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/functionutils.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/functionutils.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/inline.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/inline.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/introduce_factory.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/introduce_factory.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/introduce_parameter.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/introduce_parameter.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/localtofield.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/localtofield.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/method_object.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/method_object.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/move.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/move.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/multiproject.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/multiproject.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/occurrences.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/occurrences.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/patchedast.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/patchedast.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/rename.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/rename.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/restructure.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/restructure.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/similarfinder.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/similarfinder.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/sourceutils.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/sourceutils.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/suites.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/suites.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/topackage.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/topackage.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/usefunction.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/usefunction.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/wildcards.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/refactor/__pycache__/wildcards.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/refactor/change_signature.py
/usr/lib/python3.11/site-packages/rope/refactor/encapsulate_field.py
/usr/lib/python3.11/site-packages/rope/refactor/extract.py
/usr/lib/python3.11/site-packages/rope/refactor/functionutils.py
/usr/lib/python3.11/site-packages/rope/refactor/importutils
/usr/lib/python3.11/site-packages/rope/refactor/importutils/__init__.py
/usr/lib/python3.11/site-packages/rope/refactor/importutils/__pycache__
/usr/lib/python3.11/site-packages/rope/refactor/importutils/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/refactor/importutils/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/refactor/importutils/__pycache__/actions.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/refactor/importutils/__pycache__/actions.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/refactor/importutils/__pycache__/importinfo.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/refactor/importutils/__pycache__/importinfo.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/refactor/importutils/__pycache__/module_imports.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rope/refactor/importutils/__pycache__/module_imports.cpython-311.pyc
/usr/lib/python3.11/site-packages/rope/refactor/importutils/actions.py
/usr/lib/python3.11/site-packages/rope/refactor/importutils/importinfo.py
/usr/lib/python3.11/site-packages/rope/refactor/importutils/module_imports.py
/usr/lib/python3.11/site-packages/rope/refactor/inline.py
/usr/lib/python3.11/site-packages/rope/refactor/introduce_factory.py
/usr/lib/python3.11/site-packages/rope/refactor/introduce_parameter.py
/usr/lib/python3.11/site-packages/rope/refactor/localtofield.py
/usr/lib/python3.11/site-packages/rope/refactor/method_object.py
/usr/lib/python3.11/site-packages/rope/refactor/move.py
/usr/lib/python3.11/site-packages/rope/refactor/multiproject.py
/usr/lib/python3.11/site-packages/rope/refactor/occurrences.py
/usr/lib/python3.11/site-packages/rope/refactor/patchedast.py
/usr/lib/python3.11/site-packages/rope/refactor/rename.py
/usr/lib/python3.11/site-packages/rope/refactor/restructure.py
/usr/lib/python3.11/site-packages/rope/refactor/similarfinder.py
/usr/lib/python3.11/site-packages/rope/refactor/sourceutils.py
/usr/lib/python3.11/site-packages/rope/refactor/suites.py
/usr/lib/python3.11/site-packages/rope/refactor/topackage.py
/usr/lib/python3.11/site-packages/rope/refactor/usefunction.py
/usr/lib/python3.11/site-packages/rope/refactor/wildcards.py
/usr/share/doc/packages/python311-rope
/usr/share/doc/packages/python311-rope/README.rst
/usr/share/doc/packages/python311-rope/docs
/usr/share/doc/packages/python311-rope/docs/configuration.rst
/usr/share/doc/packages/python311-rope/docs/contributing.rst
/usr/share/doc/packages/python311-rope/docs/dev
/usr/share/doc/packages/python311-rope/docs/dev/issues.rst
/usr/share/doc/packages/python311-rope/docs/index.rst
/usr/share/doc/packages/python311-rope/docs/library.rst
/usr/share/doc/packages/python311-rope/docs/overview.rst
/usr/share/doc/packages/python311-rope/docs/release-process.rst
/usr/share/doc/packages/python311-rope/docs/rope.rst
/usr/share/licenses/python311-rope
/usr/share/licenses/python311-rope/COPYING


Generated by rpm2html 1.8.1

Fabrice Bellet, Mon Apr 29 23:40:03 2024