15
0
forked from pool/python-rope

- 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

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-rope?expand=0&rev=51
This commit is contained in:
2021-10-26 13:46:33 +00:00
committed by Git OBS Bridge
parent 5b07e73d0a
commit d4017d992f
4 changed files with 43 additions and 4 deletions

View File

@@ -1,3 +1,42 @@
-------------------------------------------------------------------
Tue Oct 26 13:44:20 UTC 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 5 19:48:56 UTC 2021 - Matej Cepl <mcepl@suse.com>