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

python313-inline-snapshot-0.34.2-1.3 RPM for noarch

From OpenSuSE Tumbleweed for noarch

Name: python313-inline-snapshot Distribution: openSUSE Tumbleweed
Version: 0.34.2 Vendor: openSUSE
Release: 1.3 Build date: Wed Jul 1 18:24:15 2026
Group: Unspecified Build host: reproducible
Size: 959251 Source RPM: python-inline-snapshot-0.34.2-1.3.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/15r10nk/inline-snapshot/
Summary: Create and update inline snapshots in your Python code
Create and update inline snapshots in your Python code.

Provides

Requires

License

MIT

Changelog

* Wed Jul 01 2026 Dirk Müller <dmueller@suse.com>
  - update to 0.34.2:
    * Fixed snapshot updates when pytest reuses stale assertion-
      rewrite cache files after a test folder is moved, which could
      leave cached code objects pointing at the old source path
    * Fixed `snapshot_arg()` to use the `fix` category (instead of
      `create`) when creating an argument with an existing non-
      ellipsis default argument value.
    * `get_snapshot_value()` now accepts a `which` parameter
      (`"new"` or `"old"`) to select whether to return the new
      (just-compared) or the old (previously stored) snapshot value
      (#336).
    * `Example.run_pytest`: deterministic test order by using `-p
      no:ranodmly`
* Sun May 17 2026 Dirk Müller <dmueller@suse.com>
  - update to 0.33.0:
    * `snapshot_arg()`, which lets you move `snapshot()` calls from
      the call site into the helper function itself.
    * **Example.is_formatted()**: new method to check whether a
      Python file in the example is already Black-formatted.
    * **Example.run_inline**: exception strings in `raises` are now
      formatted the same way `inline_snapshot.extra.raises` does,
      which is shorter for small assertions like
      `raises=snapshot("UsageError: default value cannot be a
      Custom value")`.
    * **Example.run_inline**: the `raises`, `stderr`, and
      `changed_files` arguments are now handled with
      `snapshot_arg()`, so `snapshot()` is no longer needed at the
      call site. `raises` defaults to `"<no exception>"` and
      `changed_files` defaults to `{}`.
    * **Example.run_inline**: the `reported_categories` argument is
      now handled with `snapshot_arg()` and its type changed from
      `list[Category]` to `set[Category]`. It is now only asserted
      when the reported categories differ from the CLI flags passed
      via `args`.
    * Fixed `repr(external_file(...))` to use a path relative to
      the calling file instead of the absolute path, which also
      fixes incorrect reprs on Windows.
* Sun May 17 2026 Dirk Müller <dmueller@suse.com>
  - update to 0.32.5:
    * Fixed a bug where tuples used as snapshot keys caused problems
      because they had the same hash value (#358)
  - update to 0.32.4:
    * Added context_managers parameter to Example.run_inline()
    * Fixed UsageError during session teardown when using -k (#355)
  - update to 0.32.3:
    * Improved performance of snapshot() by using lazy evaluation
    * Fixed code generation for Call objects
    * use the handler for datetime types only for the concrete types
  - update to 0.32.2:
    * Tuples in snapshots were converted internally into lists (#349)
  - update to 0.32.1:
    * Fixed handling of datetime and time objects with timezone information
    * Fixed customize hook registration
  - update to 0.32.0:
    * removed support for python 3.8
    * pathlib.Path/PurePath values are now platform independent
    * Support for import statement generation for all types
    * Added a new way to customize snapshot creation with @customize
    * Added a plugin system
    * Added support for conditional external storage
    * Added built-in handlers for datetime.datetime, date, time, and timedelta
    * Generates __file__ instead of the filename string
    * Uses dirty-equals IsNow() instead of current datetime
  - drop regenerate-snapshots.patch (obsolete)
* Wed Feb 04 2026 Steve Kowalik <steven.kowalik@suse.com>
  - Add patch regenerate-snapshots.patch:
    * Regenerate snapshots due to Python 3.12 changes. (bsc#1257517)
* Tue Dec 09 2025 Matej Cepl <mcepl@cepl.eu>
  - Update to 0.31.1:
    - Format commands with pipelines (using |) now properly fail
      when any command in the pipeline returns a non-zero exit code
      (#320). Previously, only the last command's exit code was
      considered, which could allow formatting to succeed even when
      intermediate commands failed.
  - Update to 0.31.0:
    - BREAKING CHANGE: An exception is now raised when you use
      external() in files that are not inside your tests/ directory
      (or any other directory that you can configure with
      tool.inline-snapshot.test-dir).
    - Users are now notified if they use the same UUID for multiple
      external snapshots, which can happen when copying one test as
      a template for a new test. The snapshots should be reset to
      an empty external() and recreated with inline-snapshot.
    - Updated --snapshot flag to --inline-snapshot in session hints.
    - The lookup for external snapshots has been improved.
  - Update to 0.30.1:
    - Disable ensure ascii in json.dump to support non-ASCII
      characters in external files
  - Update to 0.30.0:
    - The test-dir config option can now also be a list of paths
    - added Python 3.14 support
  - Update to 0.29.4:
    - External.run_inline() now uses the same logic as
      External.run_pytest.
    - inline-snapshot now supports different Python file encodings
      and recognizes encoding comments such as # -*- coding:
      windows-1251 -*-.
  - Update to 0.29.3:
    - xdist is now detected properly
  - Update to 0.29.2:
    - fixed string formatting with black which caused invalid
      snapshots
      assert " a " == snapshot("a")
* Mon Dec 08 2025 Steve Kowalik <steven.kowalik@suse.com>
  - Only require pytest-subtests with pytest < 9.
* Tue Sep 30 2025 Steve Kowalik <steven.kowalik@suse.com>
  - Update to 0.29.1:
    * Added
      + Added get_snapshot_value()
      + Added inline_snapshot.extra.Transformed and
      inline_snapshot.extra.transformation which can be used to transform
      values inside of snapshots.
      + exposed `@declare_unmanaged` which allows you to create your own
      unmanaged types.
      + New `external()` implementation with support for different data
      formats.
      + Ability to declare custom external formats with @register_format.
      + external() can now be used without snapshot().
      + Add/fix reproducible standard repr for functions
    * Changed
      + You now have to specify test-dir in your pyproject.toml when you save
      your tests in a folder other than `tests/` in your project root.
      + **BREAKING CHANGE**: You now have to declare format aliases if you used
      outsource() with a different suffix than .txt or .bin in the past.
      + Added extra information to the reported failure when snapshots are
      fixed or created.
    * Fixed
      + handle cases where pytest_unconfigure is called but not
      pytest_configure
      + pyproject.toml is now also located based on the current directory and
      the pytest-root.
      + Terminal with is preserved.
      + solved incompatibility with pytest_pretty.
      + external_file() now follows the aliases defined by
      register_format_alias().
      + fixed the representation of empty strings in sub-snapshots from
      triple-quotes to single-quotes.
      + fix: changed format-command default to "".
      + The readline module doesn't have to be installed on non-windows
      systems.
  - Dropped patch no-readline.patch, included upstream.
* Mon May 26 2025 Markéta Machová <mmachova@suse.com>
  - Update to 0.23.1
    * pytest assert rewriting works now together with inline-snapshot
      if you use cpython>=3.11
    * ... is now a special value to create snapshot values. The value
      change in assert [5,4] == snapshot([5,...]) is now a create
      (previously it was a fix)
    * Tests with failed snapshot comparisons now always result in a
      pytest Error, even if snapshots have been fixed or created.
    * inline-snapshot uses now --inline-snapshot=disable during CI runs
      by default
    * The default flags have changed for cpython >= 3.11
    * The categories in the terminal output are now links to the documentation
      if it is supported by the terminal
    * You can now use the config option skip-snapshot-updates-for-now
      to skip the reporting of updates
    * snapshot updates are now disabled by default. They be enabled with
      show-updates=true in your config
  - Add no-readline.patch to fix test error in pydantic-core
* Wed Jan 29 2025 Steve Kowalik <steven.kowalik@suse.com>
  - Inject multibuild to break a build cycle.
* Thu Jan 16 2025 Steve Kowalik <steven.kowalik@suse.com>
  - Update to 0.19.3:
    * Added
      + added the optional inline-snapshot[dirty-equals] dependency to depend
      on the dirty-equals version which works in combination with
      inline-snapshot.
      + You can now specify which tool you want to use to format your code by
      setting a format-command in your configuration.
      + Support for a new storage-dir configuration option, to tell
      inline-snapshot where to store data files such as external snapshots.
      + attrs can now contain unmanaged values
      + inline_snapshot.extra.warns to captures warnings and compares them
      against expected warnings.
      + snapshots inside snapshots are now supported.
      + runtime values can now be part of snapshots.
      + f-strings can now also be used within snapshots, but are currently not
      fixed by inline-snapshot.
    * Changed
      + BREAKING-CHANGE you have to install inline-snapshot[black] now if you
      want to format your code like in the previous versions. This option is
      not required if you use a format-command.
      + dirty-equals expressions are now treated like runtime values or
      snapshots within snapshots and are not modified by inline-snapshot.
    * Fixed
      + raise no assertion for positional arguments inside constructor methods.
      + fixed a crash when you changed the snapshot to use a custom constructoro
      method for dataclass/pydantic models.
      + snapshots with pydantic models can now be compared multiple times
      + Load default config values even if [tool.inline-snapshot] is missing.
      + use '.model_fields' on pydantic model class and not instance.
      + pydantic v1 is supported again.
      + Code generation for sets is now deterministic.
      + solved a bug caused by a variable inside a snapshot
      + inline-snapshot checks now if the given command line flags
      (--inline-snapshot=...) are valid
      + do not crash when handling raw f-strings (rf"",RF"",...)
      + Don't crash for snapshots like snapshot(f"")
      + skip formatting if black returns an error
* Wed Nov 13 2024 John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
  - Update to 0.14.0
    * Removed the "Programming Language :: Python :: Implementation :: PyPy"
      classifier which was incorrect, because inline-snapshot can not fix
      snapshots on pypy. inline-snapshot now enforces --inline-snapshot=disable
      when used with an implementation other than cpython, which allows
      it to be used in packages that want to support pypy.
    * Command line shortcuts can be defined to simplify your workflows.
    - -review and --fix are defined by default. See the documentation
      for details.
    * --inline-snapshot=create/fix/trim/update will no longer show reports
      for other categories. You can use --inline-snapshot=create,report
      if you want to use the old behaviour.
  - from version to 0.13.4
    * Use tomli instead of toml
* Tue Oct 29 2024 Dirk Müller <dmueller@suse.com>
  - update to 0.13.3:
    * removed non-optional dirty-equals dependency
    * star-expressions in list or dicts where never valid and cause
      a warning now.
    * A snapshot which contains an dirty-equals expression can now
      be compared multiple times.
    * Use tomllib instead of PyPI toml on Python 3.11 and later
    * added extra.prints
    * 3.13 support
    * strings with one line-break at the end become no multiline
      strings
* Thu Sep 05 2024 Guang Yee <gyee@suse.com>
  - Enable sle15_python_module_pythons.
* Fri Aug 16 2024 Guang Yee <gyee@suse.com>
  - version 0.12.1
    * add license to project metadata and some other fixes in pyproject.toml (#104)

Files

/usr/lib/python3.13/site-packages/inline_snapshot
/usr/lib/python3.13/site-packages/inline_snapshot-0.34.2.dist-info
/usr/lib/python3.13/site-packages/inline_snapshot-0.34.2.dist-info/INSTALLER
/usr/lib/python3.13/site-packages/inline_snapshot-0.34.2.dist-info/METADATA
/usr/lib/python3.13/site-packages/inline_snapshot-0.34.2.dist-info/RECORD
/usr/lib/python3.13/site-packages/inline_snapshot-0.34.2.dist-info/REQUESTED
/usr/lib/python3.13/site-packages/inline_snapshot-0.34.2.dist-info/WHEEL
/usr/lib/python3.13/site-packages/inline_snapshot-0.34.2.dist-info/entry_points.txt
/usr/lib/python3.13/site-packages/inline_snapshot-0.34.2.dist-info/licenses
/usr/lib/python3.13/site-packages/inline_snapshot-0.34.2.dist-info/licenses/LICENSE
/usr/lib/python3.13/site-packages/inline_snapshot/__init__.py
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_adapter_context.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_adapter_context.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_align.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_align.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_change.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_change.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_code_repr.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_code_repr.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_compare_context.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_compare_context.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_config.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_config.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_exceptions.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_exceptions.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_fix_assert.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_fix_assert.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_flags.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_flags.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_format.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_format.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_generator_utils.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_generator_utils.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_get_snapshot_value.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_get_snapshot_value.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_global_state.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_global_state.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_inline_snapshot.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_inline_snapshot.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_is.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_is.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_new_adapter.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_new_adapter.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_problems.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_problems.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_rewrite_code.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_rewrite_code.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_sentinels.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_sentinels.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_snapshot_arg.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_snapshot_arg.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_snapshot_session.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_snapshot_session.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_source_file.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_source_file.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_types.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_types.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_unmanaged.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_unmanaged.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_utils.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/_utils.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/extra.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/extra.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/fix_pytest_cache.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/fix_pytest_cache.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/fix_pytest_diff.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/fix_pytest_diff.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/pydantic_fix.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/pydantic_fix.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/pytest_plugin.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/pytest_plugin.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/syntax_warnings.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/syntax_warnings.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/version.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/__pycache__/version.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_adapter_context.py
/usr/lib/python3.13/site-packages/inline_snapshot/_align.py
/usr/lib/python3.13/site-packages/inline_snapshot/_change.py
/usr/lib/python3.13/site-packages/inline_snapshot/_code_repr.py
/usr/lib/python3.13/site-packages/inline_snapshot/_compare_context.py
/usr/lib/python3.13/site-packages/inline_snapshot/_config.py
/usr/lib/python3.13/site-packages/inline_snapshot/_customize
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/__init__.py
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/__pycache__
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/__pycache__/_builder.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/__pycache__/_builder.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/__pycache__/_custom.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/__pycache__/_custom.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/__pycache__/_custom_call.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/__pycache__/_custom_call.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/__pycache__/_custom_code.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/__pycache__/_custom_code.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/__pycache__/_custom_dict.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/__pycache__/_custom_dict.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/__pycache__/_custom_external.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/__pycache__/_custom_external.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/__pycache__/_custom_sequence.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/__pycache__/_custom_sequence.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/__pycache__/_custom_undefined.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/__pycache__/_custom_undefined.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/__pycache__/_custom_unmanaged.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/__pycache__/_custom_unmanaged.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/_builder.py
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/_custom.py
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/_custom_call.py
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/_custom_code.py
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/_custom_dict.py
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/_custom_external.py
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/_custom_sequence.py
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/_custom_undefined.py
/usr/lib/python3.13/site-packages/inline_snapshot/_customize/_custom_unmanaged.py
/usr/lib/python3.13/site-packages/inline_snapshot/_exceptions.py
/usr/lib/python3.13/site-packages/inline_snapshot/_external
/usr/lib/python3.13/site-packages/inline_snapshot/_external/__init__.py
/usr/lib/python3.13/site-packages/inline_snapshot/_external/__pycache__
/usr/lib/python3.13/site-packages/inline_snapshot/_external/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/__pycache__/_diff.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/__pycache__/_diff.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/__pycache__/_external.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/__pycache__/_external.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/__pycache__/_external_base.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/__pycache__/_external_base.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/__pycache__/_external_file.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/__pycache__/_external_file.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/__pycache__/_external_location.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/__pycache__/_external_location.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/__pycache__/_find_external.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/__pycache__/_find_external.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/__pycache__/_outsource.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/__pycache__/_outsource.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_diff.py
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_external.py
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_external_base.py
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_external_file.py
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_external_location.py
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_find_external.py
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_format
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_format/__init__.py
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_format/__pycache__
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_format/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_format/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_format/__pycache__/_binary.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_format/__pycache__/_binary.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_format/__pycache__/_json.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_format/__pycache__/_json.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_format/__pycache__/_protocol.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_format/__pycache__/_protocol.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_format/__pycache__/_text.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_format/__pycache__/_text.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_format/_binary.py
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_format/_json.py
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_format/_protocol.py
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_format/_text.py
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_outsource.py
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_storage
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_storage/__init__.py
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_storage/__pycache__
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_storage/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_storage/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_storage/__pycache__/_hash.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_storage/__pycache__/_hash.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_storage/__pycache__/_protocol.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_storage/__pycache__/_protocol.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_storage/__pycache__/_uuid.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_storage/__pycache__/_uuid.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_storage/_hash.py
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_storage/_protocol.py
/usr/lib/python3.13/site-packages/inline_snapshot/_external/_storage/_uuid.py
/usr/lib/python3.13/site-packages/inline_snapshot/_fix_assert.py
/usr/lib/python3.13/site-packages/inline_snapshot/_flags.py
/usr/lib/python3.13/site-packages/inline_snapshot/_format.py
/usr/lib/python3.13/site-packages/inline_snapshot/_generator_utils.py
/usr/lib/python3.13/site-packages/inline_snapshot/_get_snapshot_value.py
/usr/lib/python3.13/site-packages/inline_snapshot/_global_state.py
/usr/lib/python3.13/site-packages/inline_snapshot/_inline_snapshot.py
/usr/lib/python3.13/site-packages/inline_snapshot/_is.py
/usr/lib/python3.13/site-packages/inline_snapshot/_new_adapter.py
/usr/lib/python3.13/site-packages/inline_snapshot/_problems.py
/usr/lib/python3.13/site-packages/inline_snapshot/_rewrite_code.py
/usr/lib/python3.13/site-packages/inline_snapshot/_sentinels.py
/usr/lib/python3.13/site-packages/inline_snapshot/_snapshot
/usr/lib/python3.13/site-packages/inline_snapshot/_snapshot/__init__.py
/usr/lib/python3.13/site-packages/inline_snapshot/_snapshot/__pycache__
/usr/lib/python3.13/site-packages/inline_snapshot/_snapshot/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_snapshot/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_snapshot/__pycache__/collection_value.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_snapshot/__pycache__/collection_value.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_snapshot/__pycache__/dict_value.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_snapshot/__pycache__/dict_value.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_snapshot/__pycache__/eq_value.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_snapshot/__pycache__/eq_value.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_snapshot/__pycache__/generic_value.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_snapshot/__pycache__/generic_value.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_snapshot/__pycache__/min_max_value.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_snapshot/__pycache__/min_max_value.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_snapshot/__pycache__/undecided_value.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_snapshot/__pycache__/undecided_value.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/_snapshot/collection_value.py
/usr/lib/python3.13/site-packages/inline_snapshot/_snapshot/dict_value.py
/usr/lib/python3.13/site-packages/inline_snapshot/_snapshot/eq_value.py
/usr/lib/python3.13/site-packages/inline_snapshot/_snapshot/generic_value.py
/usr/lib/python3.13/site-packages/inline_snapshot/_snapshot/min_max_value.py
/usr/lib/python3.13/site-packages/inline_snapshot/_snapshot/undecided_value.py
/usr/lib/python3.13/site-packages/inline_snapshot/_snapshot_arg.py
/usr/lib/python3.13/site-packages/inline_snapshot/_snapshot_session.py
/usr/lib/python3.13/site-packages/inline_snapshot/_source_file.py
/usr/lib/python3.13/site-packages/inline_snapshot/_types.py
/usr/lib/python3.13/site-packages/inline_snapshot/_unmanaged.py
/usr/lib/python3.13/site-packages/inline_snapshot/_utils.py
/usr/lib/python3.13/site-packages/inline_snapshot/extra.py
/usr/lib/python3.13/site-packages/inline_snapshot/fix_pytest_cache.py
/usr/lib/python3.13/site-packages/inline_snapshot/fix_pytest_diff.py
/usr/lib/python3.13/site-packages/inline_snapshot/plugin
/usr/lib/python3.13/site-packages/inline_snapshot/plugin/__init__.py
/usr/lib/python3.13/site-packages/inline_snapshot/plugin/__pycache__
/usr/lib/python3.13/site-packages/inline_snapshot/plugin/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/plugin/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/plugin/__pycache__/_default_plugin.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/plugin/__pycache__/_default_plugin.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/plugin/__pycache__/_spec.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/plugin/__pycache__/_spec.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/plugin/_default_plugin.py
/usr/lib/python3.13/site-packages/inline_snapshot/plugin/_spec.py
/usr/lib/python3.13/site-packages/inline_snapshot/py.typed
/usr/lib/python3.13/site-packages/inline_snapshot/pydantic_fix.py
/usr/lib/python3.13/site-packages/inline_snapshot/pytest_plugin.py
/usr/lib/python3.13/site-packages/inline_snapshot/syntax_warnings.py
/usr/lib/python3.13/site-packages/inline_snapshot/testing
/usr/lib/python3.13/site-packages/inline_snapshot/testing/__init__.py
/usr/lib/python3.13/site-packages/inline_snapshot/testing/__pycache__
/usr/lib/python3.13/site-packages/inline_snapshot/testing/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/testing/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/testing/__pycache__/_example.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/testing/__pycache__/_example.cpython-313.pyc
/usr/lib/python3.13/site-packages/inline_snapshot/testing/_example.py
/usr/lib/python3.13/site-packages/inline_snapshot/version.py
/usr/share/doc/packages/python313-inline-snapshot
/usr/share/doc/packages/python313-inline-snapshot/CHANGELOG.md
/usr/share/doc/packages/python313-inline-snapshot/README.md
/usr/share/licenses/python313-inline-snapshot
/usr/share/licenses/python313-inline-snapshot/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Sun Aug 2 01:28:36 2026