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

python312-pyupgrade-3.17.0-1.3 RPM for noarch

From OpenSuSE Ports Tumbleweed for noarch

Name: python312-pyupgrade Distribution: openSUSE:Factory:zSystems
Version: 3.17.0 Vendor: openSUSE
Release: 1.3 Build date: Sat Aug 31 14:15:56 2024
Group: Development/Languages/Python Build host: reproducible
Size: 560026 Source RPM: python-pyupgrade-3.17.0-1.3.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/asottile/pyupgrade
Summary: A tool to automatically upgrade syntax for newer versions
A tool to automatically upgrade syntax for newer versions of the Python
programming language.

Provides

Requires

License

MIT

Changelog

* Sat Aug 31 2024 Dirk Müller <dmueller@suse.com>
  - update to 3.17.0:
    * remove python 3.8 support
    * rewrite TypeVar defaults for Generator / AsyncGenerator
    * run pyupgrade on itself
* Mon Jun 24 2024 Dirk Müller <dmueller@suse.com>
  - update to 3.16.0:
    * rewrite pep 646 Unpack to splat in *args
    * CI updates
* Mon Mar 25 2024 Dirk Müller <dmueller@suse.com>
  - update to 3.15.2:
    * only replace to shlex.join if joined with a space
* Thu Mar 21 2024 Dirk Müller <dmueller@suse.com>
  - update to 3.15.1:
    * handle constant folding with comments on multilines better
* Tue Dec 26 2023 Dirk Müller <dmueller@suse.com>
  - update to 3.15.0:
    * Implement defaultdict lambda fixer
    * update import symbols for 3.12 release
    * constant fold isinstance / issubclass / except
    * slight improvement to except fix
    * document TimeoutError rewrites
    * also rewrite os.error -> OSError
    * prevent rewriting unittest module functions with additional
      arguments
    * fix string formatting with named escape adjacent to placeholder
    * regenerate with latest reorder-python-imports
    * slightly cleaner plugin union registering
    * remove python 2 notes about invalid escapes
    * correct minimum requirement
    * fix weird-ws empty set literals
    * automatically rewrite to shlex.join in --py38-plus
    * posonlyargs are always present in 3.8+
    * updates for add-trailing-comma 3.x
    * 3.12 TypeVar bounds are always unquotable
    * support PEP 563 rewrites for 3.12+ TypeVar bounds
* Thu Jun 01 2023 Dirk Müller <dmueller@suse.com>
  - update to 3.4.0:
    * drop python37 support
    * remove use of deprecated ast
* Sat Dec 03 2022 Yogalakshmi Arunachalam <yarunachalam@suse.com>
  - Update to version 3.3.0
    * rewrite to datetime.UTC
  - Update to version 3.2.3
    * fix rewrite of u strings to f strings
  - Update to version 3.2.2
    * remove abspath(__file__) rewrite
  - Update to version 3.2.1
    * Fix `Optional["ForwardRef"]` rewriting
* Wed Nov 09 2022 Yogalakshmi Arunachalam <yarunachalam@suse.com>
  - Update to version 3.2.0
    * Merge pull request #747 from asottile/pre-commit-ci-update-config
    * Merge pull request #745 from tusharsadhwani/unpack
    * Add PEP646 Unpack plugin
    * Merge pull request #741 from asottile/py311-release
    * regenerate import symbols
    * Merge pull request #738 from asottile/pre-commit-ci-update-config
    * Merge pull request #734 from asottile/pre-commit-ci-update-config
* Fri Oct 28 2022 Yogalakshmi Arunachalam <yarunachalam@suse.com>
  - Update to version 3.1.0
    - regenerate import symbols
    - sync import rewrites from latest reorder-python-imports
    - there is a comment in the code about this causing a SyntaxError but as far as I can tell that is incorrect
  - Update to version 3.0.0
    - Merge pull request #718 from asottile/py3-plus
    - remove python-2-compatible rewriting mode
  - Update to version 2.38.4
    - Merge pull request #716 from asottile/lt-5
  - Update to version 2.38.3
    - Merge pull request #715 from asottile/limit-tokenize-rt-before-break
    - limit tokenize-rt to <4 before breaks
    - tokenze-rt will remove python2-compat parsing
    - Merge pull request #711 from asottile/pre-commit-ci-update-config
* Mon Sep 26 2022 Sebastian Wagner <sebix+novell.com@sebix.at>
  - update to version 2.38.2:
    - rewrite 2-arg super call in nested class
  - update to version 2.38.1:
    - regenerate imports to get typing.get_type_hints version change
  - update to version 2.38.0:
    - Add ast.Bytes in typing_classes _unparse
    Fix "NotImplementedError: Constant(value=*)"
    when defining TypedDict in alternative syntax
    with literal bytes values.
    - Implement preservation of comments "within" typing classes
    This ensures that comments which appear around TypedDicts and
    NamedTuples that are converted to class style are preserved.
    The layout of the comments in the new code isn't perfect, however
    that's relatively easy for the user to fix manually afterwards.
    Fixes https://github.com/asottile/pyupgrade/issues/497
    Fixes https://github.com/asottile/pyupgrade/issues/634
    Fixes https://github.com/asottile/pyupgrade/issues/697
    - remove pep289 rewrite
    - upgrade azure-pipelines
    - convert pip install comand to a block
    github will produce a copy-paste button
    Committed via https://github.com/asottile/all-repos
  - update to version 2.37.3:
    - fix imports removal not including rules from previous versions
  - update to version 2.37.2:
    - sync import rewrites from reorder-python-imports
  - update to version 2.37.1:
    - fix replacement of entire indented import
    - only rewrite typing.Callable in 3.10+
  - update to version 2.37.0:
    - avoid double parse when removing imports
    - fix indentation for import-imports being added
    - rewrite pipes.quote -> shlex.quote
  - update to version 2.36.0:
    - combine mock and imports plugins
  - update to version 2.35.0:
    - document import replacements
    - rewrite collections.Name to collections.abc.Name
    Co-Authored-By: ptmcg <ptmcg@austin.rr.com>
    - add more tests for import rewriting
    Co-Authored-By: ptmcg <ptmcg@austin.rr.com>
    - fix replacing imports when not ending in a newline
    - rewrite from-imports of modules
    - check in testing/generate-imports
    - rewrite aliased import-imports
    - avoid computing modnames when not needed in import replace
    - handle from imports where module name is replaced
    - fix removals and replacements at the same time
    - replace from imports with exact symbols
    - rewrite a few more six.moves.* attrs
    - refactor import removal to a plugin
    - converge open modes of io.open in one pass
    Co-Authored-By: Ali Hamdan <ali.hamdan.dev@gmail.com>
  - update to version 2.34.0:
    - warn that py2 mode will be going away
    - rewrite bytes(b'foo') to b'foo'
* Tue Jun 21 2022 Sebastian Wagner <sebix+novell.com@sebix.at>
  - update to version 2.33.0:
    - feat: rewrite deprecated unittest methods
    - Fix typos
    * README.md
    * tests/features/typing_classes_test.py
    * tests/features/yield_from_test.py
* Sun May 22 2022 Sebastian Wagner <sebix+novell.com@sebix.at>
  - update to version 2.32.1:
    - Do not remove quoted annotations on 3.11
    `from __future__ import annotations` will not be the default
    behavior on 3.11.
    Fixes #637.
* Sat Apr 09 2022 Sebastian Wagner <sebix+novell.com@sebix.at>
  - update to version 2.32.0:
    - rewrite check_output(...) universal_newlines -> text
    - convert fstring rewriter to a plugin
    - move typed class rewrite to a plugin
    - change is_name_attr to accept multiple modules
    - reorder pre-commit config
    - Update default branch to main
    - remove unneeded gitignore lines
    - coverage-html: coverage>=6.2 writes a .gitignore file
    - mypy_cache: mypy>=0.770 writes a .gitignore file
    - pytest_cache: pytest>=3.8.1 writes a .gitignore file
    - venv: virtualenv>=20.0.21 writes a .gitignore file
* Mon Mar 14 2022 Sebastian Wagner <sebix+novell.com@sebix.at>
  - update to version 2.31.1:
    - dont rewrite universal_newlines if text or **kwargs present
    - upgrade flake8-typing-imports
    - drop python3.6 support
    python 3.6 reached end of life on 2021-12-23
    - remove --fail-under from tox (covdefaults handles this)
    - Use diff syntax in more places in the docs
  - update to version 2.31.0:
    - rewrite string formatting with **locals()
* Mon Jan 03 2022 Sebastian Wagner <sebix+novell.com@sebix.at>
  - - update to version 2.31.0:
    - rewrite string formatting with **locals()
  - update to version 2.30.1:
    - don't rewrite six.reraise with named args
  - update to version 2.30.0:
    - rewrite abspath(__file__) to __file__ in py39+
    - fix __path__ type annotation
    - fix the diff output of `forced str("native") literals` section
    - improve coverage pragmas with covdefaults 2.1
    - Use org-default .github/FUNDING.yml
    Committed via https://github.com/asottile/all-repos
    - Rewrite docs examples with commented code to use diffs

Files

/etc/alternatives/pyupgrade
/usr/bin/pyupgrade
/usr/bin/pyupgrade-3.12
/usr/lib/python3.12/site-packages/pyupgrade
/usr/lib/python3.12/site-packages/pyupgrade-3.17.0.dist-info
/usr/lib/python3.12/site-packages/pyupgrade-3.17.0.dist-info/INSTALLER
/usr/lib/python3.12/site-packages/pyupgrade-3.17.0.dist-info/LICENSE
/usr/lib/python3.12/site-packages/pyupgrade-3.17.0.dist-info/METADATA
/usr/lib/python3.12/site-packages/pyupgrade-3.17.0.dist-info/RECORD
/usr/lib/python3.12/site-packages/pyupgrade-3.17.0.dist-info/REQUESTED
/usr/lib/python3.12/site-packages/pyupgrade-3.17.0.dist-info/WHEEL
/usr/lib/python3.12/site-packages/pyupgrade-3.17.0.dist-info/entry_points.txt
/usr/lib/python3.12/site-packages/pyupgrade-3.17.0.dist-info/top_level.txt
/usr/lib/python3.12/site-packages/pyupgrade/__init__.py
/usr/lib/python3.12/site-packages/pyupgrade/__main__.py
/usr/lib/python3.12/site-packages/pyupgrade/__pycache__
/usr/lib/python3.12/site-packages/pyupgrade/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/__pycache__/__main__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/__pycache__/__main__.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/__pycache__/_ast_helpers.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/__pycache__/_ast_helpers.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/__pycache__/_data.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/__pycache__/_data.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/__pycache__/_main.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/__pycache__/_main.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/__pycache__/_string_helpers.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/__pycache__/_string_helpers.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/__pycache__/_token_helpers.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/__pycache__/_token_helpers.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_ast_helpers.py
/usr/lib/python3.12/site-packages/pyupgrade/_data.py
/usr/lib/python3.12/site-packages/pyupgrade/_main.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__init__.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/collections_abc.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/collections_abc.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/constant_fold.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/constant_fold.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/datetime_utc_alias.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/datetime_utc_alias.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/defauldict_lambda.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/defauldict_lambda.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/default_encoding.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/default_encoding.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/dict_literals.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/dict_literals.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/exceptions.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/exceptions.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/format_locals.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/format_locals.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/fstrings.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/fstrings.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/identity_equality.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/identity_equality.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/imports.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/imports.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/io_open.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/io_open.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/legacy.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/legacy.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/lru_cache.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/lru_cache.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/metaclass_type.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/metaclass_type.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/mock.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/mock.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/native_literals.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/native_literals.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/new_style_classes.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/new_style_classes.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/open_mode.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/open_mode.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/percent_format.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/percent_format.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/set_literals.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/set_literals.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/shlex_join.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/shlex_join.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/six_base_classes.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/six_base_classes.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/six_calls.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/six_calls.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/six_metaclasses.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/six_metaclasses.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/six_remove_decorators.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/six_remove_decorators.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/six_simple.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/six_simple.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/subprocess_run.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/subprocess_run.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/type_of_primitive.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/type_of_primitive.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/typing_classes.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/typing_classes.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/typing_pep563.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/typing_pep563.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/typing_pep585.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/typing_pep585.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/typing_pep604.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/typing_pep604.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/typing_pep646_unpack.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/typing_pep646_unpack.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/typing_pep696_typevar_defaults.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/typing_pep696_typevar_defaults.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/typing_text.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/typing_text.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/unittest_aliases.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/unittest_aliases.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/unpack_list_comprehension.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/unpack_list_comprehension.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/versioned_branches.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/__pycache__/versioned_branches.cpython-312.pyc
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/collections_abc.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/constant_fold.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/datetime_utc_alias.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/defauldict_lambda.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/default_encoding.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/dict_literals.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/exceptions.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/format_locals.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/fstrings.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/identity_equality.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/imports.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/io_open.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/legacy.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/lru_cache.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/metaclass_type.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/mock.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/native_literals.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/new_style_classes.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/open_mode.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/percent_format.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/set_literals.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/shlex_join.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/six_base_classes.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/six_calls.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/six_metaclasses.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/six_remove_decorators.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/six_simple.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/subprocess_run.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/type_of_primitive.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/typing_classes.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/typing_pep563.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/typing_pep585.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/typing_pep604.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/typing_pep646_unpack.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/typing_pep696_typevar_defaults.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/typing_text.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/unittest_aliases.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/unpack_list_comprehension.py
/usr/lib/python3.12/site-packages/pyupgrade/_plugins/versioned_branches.py
/usr/lib/python3.12/site-packages/pyupgrade/_string_helpers.py
/usr/lib/python3.12/site-packages/pyupgrade/_token_helpers.py
/usr/share/doc/packages/python312-pyupgrade
/usr/share/doc/packages/python312-pyupgrade/README.md
/usr/share/licenses/python312-pyupgrade
/usr/share/licenses/python312-pyupgrade/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Fri Feb 21 02:31:49 2025