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

python310-pyupgrade-3.15.2-1.2 RPM for noarch

From OpenSuSE Ports Tumbleweed for noarch

Name: python310-pyupgrade Distribution: openSUSE:Factory:zSystems
Version: 3.15.2 Vendor: openSUSE
Release: 1.2 Build date: Mon Mar 25 14:04:48 2024
Group: Development/Languages/Python Build host: reproducible
Size: 409680 Source RPM: python-pyupgrade-3.15.2-1.2.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

* 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
* Tue Dec 28 2021 Sebastian Wagner <sebix+novell.com@sebix.at>
  - - 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
  - update to version 2.29.1:
    - prevent rewriting union types with forward annotations
    - replace exit(main()) with raise SystemExit(main())
    Committed via https://github.com/asottile/all-repos
* Tue Nov 16 2021 Sebastian Wagner <sebix+novell.com@sebix.at>
  - - update to version 2.29.1:
    - prevent rewriting union types with forward annotations
    - replace exit(main()) with raise SystemExit(main())
    Committed via https://github.com/asottile/all-repos
* Tue Nov 02 2021 Sebastian Wagner <sebix+novell.com@sebix.at>
  - update to version 2.29.0:
    - Revert "Merge pull request #320 from asottile/new_class_super_v2"
    This reverts commit b3f8c7b2e9ccb06c6028d5dd90c8f5490a49e95b, reversing
    changes made to 41308214566af7c5589ebc7e8a760522c82dc3bc.
    - Revert "Merge pull request #545 from asottile/skip-staticmethod"
    This reverts commit 8768d42facdaa1ef771a5a689b11329a54afd00a, reversing
    changes made to a2f517f0103c1f74bffbc06be510bcec4cd181ec.
  - update to version 2.28.1:
    - don't rewrite old-super for staticmethods
* Sun Sep 26 2021 Sebastian Wagner <sebix+novell.com@sebix.at>
  - update to version 2.28.0:
    - don't rewrite old super calls for __new__
    - fix super replacement of multiple lines
    - Fix bug with calling different superclass method
    - Revert "Revert "Merge pull request #317 from asottile/old_super""
    This reverts commit 2719335fa7bdb582b35ac90547a0f763d4225036.
    - fix raise_from with multi lines / trailing commas
    - fix rewrite causing syntax error when the first arg has newlines
    - fix invalid dedent with comment after block
* Fri Sep 24 2021 Sebastian Wagner <sebix+novell.com@sebix.at>
  - update to version 2.27.0:
    - handle named escape sequences in format upgrades
    - remove splatting of listcomp -> splat of generator
* Sat Sep 18 2021 Sebastian Wagner <sebix+novell.com@sebix.at>
  - update to version 2.26.0.post1:
    - BUG: fix broken tests for versioned_branches feature
  - update to version 2.26.0:
    - ENH: expand versioned_branches feature to Python 3 minor version comparison (<, >, <=, >= with else)
  - update to version 2.25.1:
    - don't rewrite %-format with width+s
    - update timidity docs for f-strings
  - update to version 2.25.0:
    - revert pep584 rewrite
* Fri Aug 20 2021 Sebastian Wagner <sebix+novell.com@sebix.at>
  - update to version 2.24.0:
    - Rewrite unittest deprecated aliases
    Fixes #519
* Sun Aug 08 2021 Sebastian Wagner <sebix+novell.com@sebix.at>
  - update to version 2.23.3:
    - can't splat async generators
    - cannot unpack async generators
    - add extra test for pep584
  - update to version 2.23.2:
    - correctly compute indent for typeddict after dedent
  - update to version 2.23.1:
    - fix bug in merge dicts: look for comma backwards
  - update to version 2.23.0:
    - rewrite type of primitive
  - update to version 2.22.0:
    - rewrite six.moves.range
    - rewrite lru_cache with maxsize=None and typed=False
    Co-authored-by: Max Rozentsveyg <maxr@outlook.com>
  - update to version 2.21.2:
    - dont do generator rewrite if list comp contains await
  - update to version 2.21.1:
    - fix breakage from async generator
    - Fix etree heading, non-breaking space to space
  - update to version 2.21.0:
    - remove redunant encoding even for f-strings
  - update to version 2.20.1:
    - dont rewrite fstring if await in py3
* Sat Jul 03 2021 Sebastian Wagner <sebix+novell.com@sebix.at>
  - Update to version 2.20.0:
    - stricter mypy settings
    - remove unused type ignore
    - fix six.with_metaclass and trailing commas
    - rewrite cElementTree to ElementTree
* Sun Jun 20 2021 Sebastian Wagner <sebix+novell.com@sebix.at>
  - update to version 2.19.1
    - unpack argument list comprehensions
    - revert string join for potential perf reasons
  - update to version 2.19.2
    - replace open modes with string flags
  - update to version 2.19.3
    - ignore unrelated calls to .encode(...)
    - fix elif -> else when indented
  - update to version 2.19.4
    - fix __metaclass__ = type replacement without extra newline
* Tue May 25 2021 Sebastian Wagner <sebix+novell.com@sebix.at>
  - update to versio 2.18.3:
    - remove trailing comma after removed list comp
* Mon May 24 2021 Sebastian Wagner <sebix+novell.com@sebix.at>
  - update to version 2.18.2:
    - don't rewrite list comp to generator expression in short-circuiting functions
* Fri May 21 2021 Sebastian Wagner <sebix+novell.com@sebix.at>
  - update to version 2.18.1:
    - check argument count for generator rewrite
  - update to version 2.18.0:
    - use generator expressions in single arg func calls
* Wed May 19 2021 Sebastian Wagner <sebix+novell.com@sebix.at>
  - update to version 2.17.0:
    - Fix typo in the "is" example of README
    - use generator to unpack list comprehension
  - update to version 2.16.0:
    - don't crash on --py311-plus
    - Use more inclusive language
    - pep584-rewrite
    - note pep584 change in README
* Sun May 09 2021 Sebastian Wagner <sebix+novell.com@sebix.at>
  - update to version 2.15.0:
    - only replace argument token
    - CLN only replace argument token
    - replace stdout=PIPE and stderr=PIPE with capture_output=True
* Sun May 02 2021 Sebastian Wagner <sebix+novell.com@sebix.at>
  - update to version 2.14.0:
    - replace universal_newlines with text if py37+
    - upgrade subprocess.run(universal_newlines=True) to subprocess.run(text=True) in --py37-plus
    - reorder_python_imports: v2.4.0 → v2.5.0
* Sat Apr 24 2021 Sebastian Wagner <sebix+novell.com@sebix.at>
  - Update to version 2.13.0:
    - move pep563 rewrite to py311
  - Update to version 2.12.0:
    - document annotation unquote
    - use dict comprehension
    - rewrite typeddict even with total= option
    - Update azure-pipelines template repositories
    - _to_fstring: Use original token stream instead of unparsed AST
* Mon Mar 22 2021 Sebastian Wagner <sebix+novell.com@sebix.at>
  - Update to version 2.10.1
    - fix nested union replaces
  - Update to version 2.11.0
    - dequote annotations: quoted annotations + `from __future__ import annotations`
    - rewrite open even with mode=: Rewrite open_mode even if mode is passed by name
* Sat Feb 13 2021 Sebastian Wagner <sebix+novell.com@sebix.at>
  - Disable build on Python 2 as the build fails with the latest version.
* Tue Feb 09 2021 Sebastian Wagner <sebix+novell.com@sebix.at>
  - Update to version 1.10.0:
    - lru_cache(maxsize=None) => functools.cache
* Wed Feb 03 2021 Sebastian Wagner <sebix+novell.com@sebix.at>
  - Update to version 2.9.0:
    - Document correct minimum version for PEP 604
    - fix propagation of --keep-mock
    - Add --keep-runtime-typing
* Sun Jan 31 2021 Sebastian Wagner <sebix+novell.com@sebix.at>
  - Update to version 2.8.0:
    - genericize future import detection
    - rewrite pep585 generic builtins
    - move py2 compat fixer to plugins
    - move %-format rewrite to a plugin
    - move py3+ base class removal to plugins
    - move lru_cache rewrite to a plugin
    - move six decorator removal to a plugin
    - move six.b / six.ensure_binary to a plugin
    - move __metaclass__ = test checker to a plugin
    - move io.open rewriting to a plugin
    - move simple six attrs to a plugin
    - move typing pep585 rewrite to a plugin
    - move default encoding to a plugin
    - move native literals to a plugin
    - move versioned branches rewrite to a plugin
    - move open mode fix to a plugin
    - move os error alias rename to a plugin
    - move six calls / metaclass rewrites to plugins
    - settings in separate class
    - move mock rewrite to a plugin
    - refactor Py3Plus scope management
    - move super and yield from to a legacy plugin
    - combine six_b into six_calls plugin
    - replace typing.Text with str
    - rewrite pep604 (+ add --py310-plus)
    - document PEP 604 rewrites
* Sat Jan 23 2021 Sebastian Wagner <sebix+novell.com@sebix.at>
  - Use python_clone and alternatives to provide the executable.

Files

/etc/alternatives/pyupgrade
/usr/bin/pyupgrade
/usr/bin/pyupgrade-3.10
/usr/lib/python3.10/site-packages/pyupgrade
/usr/lib/python3.10/site-packages/pyupgrade-3.15.2-py3.10.egg-info
/usr/lib/python3.10/site-packages/pyupgrade-3.15.2-py3.10.egg-info/PKG-INFO
/usr/lib/python3.10/site-packages/pyupgrade-3.15.2-py3.10.egg-info/SOURCES.txt
/usr/lib/python3.10/site-packages/pyupgrade-3.15.2-py3.10.egg-info/dependency_links.txt
/usr/lib/python3.10/site-packages/pyupgrade-3.15.2-py3.10.egg-info/entry_points.txt
/usr/lib/python3.10/site-packages/pyupgrade-3.15.2-py3.10.egg-info/requires.txt
/usr/lib/python3.10/site-packages/pyupgrade-3.15.2-py3.10.egg-info/top_level.txt
/usr/lib/python3.10/site-packages/pyupgrade/__init__.py
/usr/lib/python3.10/site-packages/pyupgrade/__main__.py
/usr/lib/python3.10/site-packages/pyupgrade/__pycache__
/usr/lib/python3.10/site-packages/pyupgrade/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/__pycache__/__main__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/__pycache__/__main__.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/__pycache__/_ast_helpers.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/__pycache__/_ast_helpers.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/__pycache__/_data.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/__pycache__/_data.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/__pycache__/_main.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/__pycache__/_main.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/__pycache__/_string_helpers.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/__pycache__/_string_helpers.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/__pycache__/_token_helpers.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/__pycache__/_token_helpers.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_ast_helpers.py
/usr/lib/python3.10/site-packages/pyupgrade/_data.py
/usr/lib/python3.10/site-packages/pyupgrade/_main.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__init__.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/collections_abc.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/collections_abc.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/constant_fold.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/constant_fold.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/datetime_utc_alias.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/datetime_utc_alias.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/defauldict_lambda.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/defauldict_lambda.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/default_encoding.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/default_encoding.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/dict_literals.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/dict_literals.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/exceptions.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/exceptions.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/format_locals.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/format_locals.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/fstrings.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/fstrings.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/identity_equality.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/identity_equality.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/imports.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/imports.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/io_open.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/io_open.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/legacy.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/legacy.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/lru_cache.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/lru_cache.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/metaclass_type.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/metaclass_type.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/mock.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/mock.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/native_literals.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/native_literals.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/new_style_classes.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/new_style_classes.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/open_mode.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/open_mode.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/percent_format.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/percent_format.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/set_literals.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/set_literals.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/shlex_join.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/shlex_join.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/six_base_classes.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/six_base_classes.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/six_calls.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/six_calls.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/six_metaclasses.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/six_metaclasses.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/six_remove_decorators.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/six_remove_decorators.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/six_simple.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/six_simple.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/subprocess_run.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/subprocess_run.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/type_of_primitive.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/type_of_primitive.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/typing_classes.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/typing_classes.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/typing_pep563.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/typing_pep563.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/typing_pep585.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/typing_pep585.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/typing_pep604.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/typing_pep604.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/typing_pep646_unpack.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/typing_pep646_unpack.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/typing_text.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/typing_text.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/unittest_aliases.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/unittest_aliases.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/unpack_list_comprehension.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/unpack_list_comprehension.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/versioned_branches.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/__pycache__/versioned_branches.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/collections_abc.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/constant_fold.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/datetime_utc_alias.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/defauldict_lambda.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/default_encoding.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/dict_literals.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/exceptions.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/format_locals.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/fstrings.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/identity_equality.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/imports.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/io_open.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/legacy.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/lru_cache.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/metaclass_type.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/mock.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/native_literals.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/new_style_classes.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/open_mode.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/percent_format.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/set_literals.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/shlex_join.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/six_base_classes.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/six_calls.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/six_metaclasses.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/six_remove_decorators.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/six_simple.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/subprocess_run.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/type_of_primitive.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/typing_classes.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/typing_pep563.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/typing_pep585.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/typing_pep604.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/typing_pep646_unpack.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/typing_text.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/unittest_aliases.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/unpack_list_comprehension.py
/usr/lib/python3.10/site-packages/pyupgrade/_plugins/versioned_branches.py
/usr/lib/python3.10/site-packages/pyupgrade/_string_helpers.py
/usr/lib/python3.10/site-packages/pyupgrade/_token_helpers.py
/usr/share/doc/packages/python310-pyupgrade
/usr/share/doc/packages/python310-pyupgrade/README.md
/usr/share/licenses/python310-pyupgrade
/usr/share/licenses/python310-pyupgrade/LICENSE


Generated by rpm2html 1.8.1

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