| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
| Name: python311-black | Distribution: openSUSE Tumbleweed |
| Version: 26.1.0 | Vendor: openSUSE |
| Release: 1.2 | Build date: Tue Feb 3 04:42:25 2026 |
| Group: Unspecified | Build host: reproducible |
| Size: 2122370 | Source RPM: python-black-26.1.0-1.2.src.rpm |
| Packager: https://bugs.opensuse.org | |
| Url: https://github.com/psf/black | |
| Summary: A code formatter written in, and written for Python | |
Black is a code formatter written in Python, and reformats Python 2.x and 3.x code. Black reformats entire files in place. It is not configurable. It does not take previous formatting into account. The coding style enforced is a PEP-8 subset, adheres to PEP-257, and otherwise passes the rules of the "pycodestyle" checker. Black skips over blocks that start and end with "# fmt: off" and "# fmt: on", respectively. It also recognizes YAPF's block comments to the same effect.
MIT
* Tue Feb 03 2026 Steve Kowalik <steven.kowalik@suse.com>
- Update to 26.1.0:
* Highlights
+ Introduces the 2026 stable style
+ Black no longer supports running with Python 3.9
+ This release alo bumps pathspec to v1 and fixes inconsistencies with
Git's .gitignore logic (bsc#1257517)
* Stable style
+ Fix bug where comments preceding # fmt: off/# fmt: on blocks were
incorrectly removed, particularly affecting Jupytext's # %% [markdown]
comments
+ Fix crash when multiple # fmt: skip comments are used in a multi-part
if-clause, on string literals, or on dictionary entries with long lines
+ Fix possible crash when fmt: directives aren't on the top level
+ Preserve parentheses when # type: ignore comments would be merged with
other comments on the same line, preventing AST equivalence failures
* Preview style
+ Fix fmt: skip skipping the line after instead of the line it's on
+ Remove unnecessary parentheses from the left-hand side of assignments
while preserving magic trailing commas and intentional multiline
formatting
+ Fix fix_fmt_skip_in_one_liners crashing on with statements
+ Fix fix_fmt_skip_in_one_liners crashing on annotated parameters
+ Fix new lines being added after imports with # fmt: skip on them
* Output
+ Explicitly shutdown the multiprocessing manager when run in diff mode
* Thu Nov 20 2025 Dirk Müller <dmueller@suse.com>
- update to 25.11.0:
* Enable base 3.14 support
* Add support for the new Python 3.14 t-string syntax
introduced by PEP 750
* Fix bug where comments between `# fmt: off` and `# fmt: on`
were reformatted
* Comments containing fmt directives now preserve their exact
formatting instead of being normalized
* Add `no_cache` option to control caching behavior.
* Mon Sep 22 2025 Dirk Müller <dmueller@suse.com>
- update to 25.9.0:
* Remove support for pre-python 3.7 `await/async` as soft
keywords/variable names
* Fix crash while formatting a long `del` statement containing
tuples
* Fix crash while formatting expressions using the walrus
operator in complex `with` statements
* Handle `# fmt: skip` followed by a comment at the end of file
* Fix crash when a tuple appears in the `as` clause of a `with`
statement
* Fix crash when tuple is used as a context manager inside a
`with` statement
* Fix crash when formatting a `\` followed by a `
` followed
by a comment
* Fix crash on a `\r
* Fix crash on `await ...` (where `...` is a literal
`Ellipsis`)
* Fix crash on parenthesized expression inside a type parameter
bound
* Fix crash when using line ranges excluding indented single
line decorated items
* (#4670)
* Fix a bug where one-liner functions/conditionals marked with
`# fmt: skip` would still be formatted
* Improve `multiline_string_handling` with ternaries and
dictionaries
* Fix a bug where `string_processing` would not split f-strings
directly after expressions
* Wrap the `in` clause of comprehensions across lines if
necessary
* Remove parentheses around multiple exception types in
`except` and `except*` without `as`.
* Rewrite tokenizer to improve performance and compliance
* Fix bug where certain unusual expressions (e.g., lambdas)
were not accepted in type parameter bounds and defaults.
* Avoid using an extra process when running with only one
worker
- drop update-PEP-701.patch, click-820.patch: upstream
* Wed Jun 18 2025 Matej Cepl <mcepl@cepl.eu>
- Instead of skipping the test, apply upstream fix as
update-PEP-701.patch (code from gh#psf/black!4690).
* Wed Jun 18 2025 Matej Cepl <mcepl@cepl.eu>
- Skip test_simple_format tests, which is failing with 3.13.5
(gh#psf/black#4698).
* Mon May 12 2025 Daniel Garcia <daniel.garcia@suse.com>
- Use libalternatives instead of update-alternatives
- Add upstream click-820.patch to make it work with latest
python-click
gh#psf/black#4577, gh#psf/black#4591, gh#psf/black#4666
* Mon Feb 10 2025 Nico Krapp <nico.krapp@suse.com>
- Update to 25.1.0:
Highlights:
* Normalize casing of Unicode escape characters in strings to lowercase (#2916)
* Fix inconsistencies in whether certain strings are detected as docstrings (#4095)
* Consistently add trailing commas to typed function parameters (#4164)
* Remove redundant parentheses in if guards for case blocks (#4214)
* Add parentheses to if clauses in case blocks when the line is too long (#4269)
* Whitespace before # fmt: skip comments is no longer normalized (#4146)
* Fix line length computation for certain expressions that involve the power operator (#4154)
* Check if there is a newline before the terminating quotes of a docstring (#4185)
* Fix type annotation spacing between * and more complex type variable tuple (#4440)
* Remove parentheses around sole list items (#4312)
* Generic function definitions are now formatted more elegantly: parameters are
split over multiple lines first instead of type parameter definitions (#4553)
Stable style:
* Fix formatting cells in IPython notebooks with magic methods and starting or trailing
empty lines (#4484)
* Fix crash when formatting with statements containing tuple generators/unpacking
(#4538)
Preview style:
* Fix/remove string merging changing f-string quotes on f-strings with internal quotes
(#4498)
* Collapse multiple empty lines after an import into one (#4489)
* Prevent string_processing and wrap_long_dict_values_in_parens from removing
parentheses around long dictionary values (#4377)
* Move wrap_long_dict_values_in_parens from the unstable to preview style (#4561)
Packaging:
* Store license identifier inside the License-Expression metadata field, see
PEP 639. (#4479)
Performance:
* Speed up the is_fstring_start function in Black's tokenizer (#4541)
Integrations:
* If using stdin with --stdin-filename set to a force excluded path, stdin won't be
formatted. (#4539)
- update requirements from pyproject.toml
* Fri Sep 27 2024 Yogalakshmi Arunachalam <yarunachalam@suse.com>
- Update to 24.8.0
Stable style
* Fix crash when # fmt: off is used before a closing parenthesis
or bracket. (#4363)
Parser
* Fix regression where Black failed to parse a multiline f-string
containing another multiline string (#4339)
* Fix regression where Black failed to parse an escaped single
quote inside an f-string (#4401)
* Fix bug with Black incorrectly parsing empty lines with
a backslash (#4343)
* Fix bugs with Black's tokenizer not handling \{
inside f-strings very well (#4422)
* Fix incorrect line numbers in the tokenizer for certain
tokens within f-strings (#4423)
Performance
* Improve performance when a large directory is listed
in .gitignore (#4415)
Blackd
* Fix blackd (and all extras installs) for docker container (#4357)
* Sun Jul 21 2024 Andrea Manzini <andrea.manzini@suse.com>
- update to 24.4.2
* Fix regression where certain complex f-strings failed to parse
* Fix bad performance on certain complex string literals
- update to 24.4.1
* Add support for the new Python 3.12 f-string syntax introduced by PEP 701
* Fix crash involving indented dummy functions containing newlines
* Add support for type parameter defaults, a new syntactic feature added
to Python 3.13 by PEP 696
- update to 24.4.0
* Fix unwanted crashes caused by AST equivalency check
* if guards in case blocks are now wrapped in parentheses when the line is too long.
* Stop moving multiline strings to a new line unless inside brackets
* Sun Mar 17 2024 Dirk Müller <dmueller@suse.com>
- update to 24.3.0 (bsc#1221530, CVE-2024-21503):
* Don't move comments along with delimiters, which could cause
crashes
* Strengthen AST safety check to catch more unsafe changes to
strings. Previous versions of Black would incorrectly format
the contents of certain unusual f-strings containing
nested strings with the same quote type. Now, Black will
crash on such strings until support for the new f-string syntax
is implemented.
* Fix a bug where line-ranges exceeding the last code line
would not work as expected
* Fix catastrophic performance on docstrings that contain large
numbers of leading tab characters. This fixes CVE-2024-21503.
* Note what happens when `--check` is used with `--quiet`
* Thu Feb 22 2024 Markéta Machová <mmachova@suse.com>
- Update to 24.2.0
* Consistently add trailing comma on typed parameters (#4164)
* Fixed a bug where comments where mistakenly removed along with
redundant parentheses (#4218)
* Move the hug_parens_with_braces_and_square_brackets feature to
the unstable style due to an outstanding crash and proposed
formatting tweaks (#4198)
* Black now ignores pyproject.toml that is missing a [tool.black]
section when discovering project root and configuration.
* More changes, see upstream CHANGES.md
* Mon Jan 29 2024 Dirk Müller <dmueller@suse.com>
- update to 24.1.0:
* Add parentheses around `if`-`else` expressions
* Dummy class and function implementations consisting only of
`...` are formatted more compactly
* If an assignment statement is too long, we now prefer
splitting on the right-hand side
* Hex codes in Unicode escape sequences are now standardized to
lowercase
* Allow empty first lines at the beginning of most blocks
* Add parentheses around long type annotations
* Enforce newline after module docstrings
* Fix incorrect magic trailing comma handling in return types
* Remove blank lines before class docstrings
* Wrap multiple context managers in parentheses if combined in
a single `with` statement
* Fix bug in line length calculations for power operations
* Add trailing commas to collection literals even if there's a
comment after the last entry
* When using `--skip-magic-trailing-comma` or `-C`, trailing
commas are stripped from subscript expressions with more than
1 element
* Add extra blank lines in stubs in a few cases
* Accept raw strings as docstrings
* Split long lines in case blocks
* Stop removing spaces from walrus operators within subscripts
* Fix incorrect formatting of certain async statements
* Allow combining `# fmt: skip` with other comments
* There are already a few improvements in the `--preview`
style, which are slated for the 2025 stable style. Try them
out and share your feedback. In the past, the preview
style has included some features that we were not able to
stabilize. This year, we're adding a separate `--unstable`
style for features with known problems. Now, the `--preview`
style only includes features that we actually expect to make
it into next year's stable style.
* Fix comment handling when parenthesising conditional
expressions
* Fix bug where spaces were not added around parenthesized
walruses in subscripts, unlike other binary operators
* Remove empty lines before docstrings in async functions
* Address a missing case in the change to allow empty lines at
the beginning of all blocks, except immediately before a
docstring
* For stubs, fix logic to enforce empty line after nested
classes with bodies
* Add `--unstable` style, covering preview features that have
known problems that would block them from going into the
stable style. Also add the `--enable-unstable-feature`
flag; for example, use `--enable-unstable-feature
hug_parens_with_braces_and_square_brackets` to apply this
preview feature throughout 2024, even if a later Black
release downgrades the feature to unstable
* Format module docstrings the same as class and function
docstrings
* Fix crash when using a walrus in a dictionary
* Fix unnecessary parentheses when wrapping long dicts
* Stop normalizing spaces before `# fmt: skip` comments
* Print warning when configuration in `pyproject.toml` contains
an invalid key
* Fix symlink handling, properly ignoring symlinks that point
outside of root
* Fix cache mtime logic that resulted in false positive cache
hits
* Remove the long-deprecated `--experimental-string-processing`
flag. This feature can currently be enabled with `--preview
- -enable-unstable- feature string_processing`.
* Revert the change to run Black's pre-commit integration only
on specific git hooks (#3940) for better compatibility with
older versions of pre-commit
* Tue Jan 02 2024 Dirk Müller <dmueller@suse.com>
- update to 23.12.1:
* Fixed a bug that included dependencies from the `d` extra by
default
* This release (23.12.0) will still produce the 2023 style.
Most but not all of the changes in `--preview` mode will be
in the 2024 stable style.
* Fix bug where `# fmt: off` automatically dedents when used
with the `--line-ranges` option, even when it is not within
the specified line range.
* Fix feature detection for parenthesized context managers
* Prefer more equal signs before a break when splitting chained
assignments
* Standalone form feed characters at the module level are no
longer removed
* Additional cases of immediately nested tuples, lists, and
dictionaries are now indented less
* Allow empty lines at the beginning of all blocks, except
immediately before a docstring
* Fix crash in preview mode when using a short `--line-length`
* Keep suites consisting of only an ellipsis on their own lines
if they are not functions or class definitions
* `--line-ranges` now skips _Black_'s internal stability check
in `--safe` mode. This avoids a crash on rare inputs that have
many unformatted same-content lines.
* Thu Nov 16 2023 Dirk Müller <dmueller@suse.com>
- update to 23.11.0:
* Support formatting ranges of lines with the new `--line-
ranges` command-line option
* Fix crash on formatting bytes strings that look like
docstrings (#4003)
* Fix crash when whitespace followed a backslash before newline
in a docstring (#4008)
* Fix standalone comments inside complex blocks crashing Black
* Fix crash on formatting code like `await (a ** b)` (#3994)
* No longer treat leading f-strings as docstrings. This matches
Python's behaviour and fixes a crash (#4019)
* Consistently apply force exclusion logic before resolving
symlinks (#4015)
* Fix a bug in the matching of absolute path names in
`--include` (#3976)
* Tue Oct 24 2023 Dirk Müller <dmueller@suse.com>
- update to 23.10.1:
* Maintanence release to get a fix out for GitHub Action edge
case (#3957)
* Fix merging implicit multiline strings that have inline
comments (#3956)
* Allow empty first line after block open before a comment or
compound statement (#3967)
* Fix comments getting removed from inside parenthesized
strings (#3909)
* Fix long lines with power operators getting split before the
line length (#3942)
* Long type hints are now wrapped in parentheses and properly
indented when split across multiple lines (#3899)
* Magic trailing commas are now respected in return types.
* Require one empty line after module-level docstrings. (#3932)
* Treat raw triple-quoted strings as docstrings (#3947)
* Fix bug where attributes named `type` were not accepted
inside `match` statements
* Add support for PEP 695 type aliases containing lambdas and
other unusual expressions
* Black no longer attempts to provide special errors for
attempting to format Python 2 code (#3933)
* Black will more consistently print stacktraces on internal
errors in verbose mode
* Tue Sep 19 2023 Dirk Müller <dmueller@suse.com>
- remove buildrequires that are not used on sle15
* Tue Sep 12 2023 Dirk Müller <dmueller@suse.com>
- update to 23.9.1:
* Upgrade to mypy 1.5.1 (#3864)
* Store raw tuples instead of NamedTuples in Black's cache,
improving performance and decreasing the size of the cache
* More concise formatting for dummy implementations (#3796)
* In stub files, add a blank line between a statement with a
body (e.g an `if sys.version_info > (3, x):`) and a
function definition on the same level (#3862)
* Fix a bug whereby spaces were removed from walrus operators
within subscript(#3823)
* Black now applies exclusion and ignore logic before resolving
symlinks (#3846)
* Avoid importing `IPython` if notebook cells do not contain
magics (#3782)
* Improve caching by comparing file hashes as fallback for
mtime and size (#3821)
* Fix an issue in `blackd` with single character input (#3558)
* Sun Jul 16 2023 Dirk Müller <dmueller@suse.com>
- update to 23.7.0:
* Runtime support for Python 3.7 has been removed. Formatting
3.7 code will still be supported until further notice (#3765)
* Fix a bug where an illegal trailing comma was added to return
type annotations using PEP 604 unions (#3735)
* Fix several bugs and crashes where comments in stub files
were removed or mishandled under some circumstances (#3745)
* Fix a crash with multi-line magic comments like `type:
ignore` within parentheses
* Fix error in AST validation when _Black_ removes trailing
whitespace in a type comment
* Remove patching of Click that mitigated errors on Python 3.6
with `LANG=C` (#3768)
* Add support for the new PEP 695 syntax in Python 3.12 (#3703)
* Speed up _Black_ significantly when the cache is full (#3751)
* Avoid importing `IPython` in a case where we wouldn't need it
(#3748)
* Use aware UTC datetimes internally, avoids deprecation
warning on Python 3.12 (#3728)
* Change verbose logging to exactly mirror _Black_'s logic for
source discovery (#3749)
* Thu Jun 22 2023 Dirk Müller <dmueller@suse.com>
- limit to newer python versions, older are no longer needed
* Fri Apr 21 2023 Dirk Müller <dmueller@suse.com>
- add sle15_python_module_pythons (jsc#PED-68)
* Thu Apr 13 2023 Matej Cepl <mcepl@suse.com>
- Make calling of %{sle15modernpython} optional.
* Mon Apr 03 2023 Dirk Müller <dmueller@suse.com>
- update to 23.3.0:
* Import lines with `# fmt: skip` and `# fmt: off` no longer
have an extra blank line added when they are right after
another import line (#3610)
* Added support for formatting files with invalid type comments
* Document that only the most recent release is supported for
security issues;
* Introduce the 2023 stable style, which incorporates most
aspects of last year's preview style (#3418).
* Enforce empty lines before classes and functions with sticky
leading comments
* Reformat empty and whitespace-only files as either an empty
file (if no newline is present) or as a single newline character
(if a newline is present) (#3348)
* Correctly handle trailing commas that are inside a line's
leading non-nested parens
* `--skip-string-normalization` / `-S` now prevents docstring
prefixes from being
* Details see https://github.com/psf/black/releases/tag/23.3.0
/usr/bin/black /usr/bin/black-3.11 /usr/bin/blackd /usr/bin/blackd-3.11 /usr/lib/python3.11/site-packages/__pycache__/_black_version.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/__pycache__/_black_version.cpython-311.pyc /usr/lib/python3.11/site-packages/_black_version.py /usr/lib/python3.11/site-packages/_black_version.pyi /usr/lib/python3.11/site-packages/black /usr/lib/python3.11/site-packages/black-26.1.0.dist-info /usr/lib/python3.11/site-packages/black-26.1.0.dist-info/INSTALLER /usr/lib/python3.11/site-packages/black-26.1.0.dist-info/METADATA /usr/lib/python3.11/site-packages/black-26.1.0.dist-info/RECORD /usr/lib/python3.11/site-packages/black-26.1.0.dist-info/REQUESTED /usr/lib/python3.11/site-packages/black-26.1.0.dist-info/WHEEL /usr/lib/python3.11/site-packages/black-26.1.0.dist-info/entry_points.txt /usr/lib/python3.11/site-packages/black-26.1.0.dist-info/licenses /usr/lib/python3.11/site-packages/black-26.1.0.dist-info/licenses/LICENSE /usr/lib/python3.11/site-packages/black/__init__.py /usr/lib/python3.11/site-packages/black/__main__.py /usr/lib/python3.11/site-packages/black/__pycache__ /usr/lib/python3.11/site-packages/black/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/black/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/black/__pycache__/__main__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/black/__pycache__/__main__.cpython-311.pyc /usr/lib/python3.11/site-packages/black/__pycache__/_width_table.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/black/__pycache__/_width_table.cpython-311.pyc /usr/lib/python3.11/site-packages/black/__pycache__/brackets.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/black/__pycache__/brackets.cpython-311.pyc /usr/lib/python3.11/site-packages/black/__pycache__/cache.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/black/__pycache__/cache.cpython-311.pyc /usr/lib/python3.11/site-packages/black/__pycache__/comments.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/black/__pycache__/comments.cpython-311.pyc /usr/lib/python3.11/site-packages/black/__pycache__/concurrency.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/black/__pycache__/concurrency.cpython-311.pyc /usr/lib/python3.11/site-packages/black/__pycache__/const.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/black/__pycache__/const.cpython-311.pyc /usr/lib/python3.11/site-packages/black/__pycache__/debug.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/black/__pycache__/debug.cpython-311.pyc /usr/lib/python3.11/site-packages/black/__pycache__/files.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/black/__pycache__/files.cpython-311.pyc /usr/lib/python3.11/site-packages/black/__pycache__/handle_ipynb_magics.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/black/__pycache__/handle_ipynb_magics.cpython-311.pyc /usr/lib/python3.11/site-packages/black/__pycache__/linegen.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/black/__pycache__/linegen.cpython-311.pyc /usr/lib/python3.11/site-packages/black/__pycache__/lines.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/black/__pycache__/lines.cpython-311.pyc /usr/lib/python3.11/site-packages/black/__pycache__/mode.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/black/__pycache__/mode.cpython-311.pyc /usr/lib/python3.11/site-packages/black/__pycache__/nodes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/black/__pycache__/nodes.cpython-311.pyc /usr/lib/python3.11/site-packages/black/__pycache__/numerics.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/black/__pycache__/numerics.cpython-311.pyc /usr/lib/python3.11/site-packages/black/__pycache__/output.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/black/__pycache__/output.cpython-311.pyc /usr/lib/python3.11/site-packages/black/__pycache__/parsing.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/black/__pycache__/parsing.cpython-311.pyc /usr/lib/python3.11/site-packages/black/__pycache__/ranges.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/black/__pycache__/ranges.cpython-311.pyc /usr/lib/python3.11/site-packages/black/__pycache__/report.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/black/__pycache__/report.cpython-311.pyc /usr/lib/python3.11/site-packages/black/__pycache__/rusty.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/black/__pycache__/rusty.cpython-311.pyc /usr/lib/python3.11/site-packages/black/__pycache__/schema.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/black/__pycache__/schema.cpython-311.pyc /usr/lib/python3.11/site-packages/black/__pycache__/strings.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/black/__pycache__/strings.cpython-311.pyc /usr/lib/python3.11/site-packages/black/__pycache__/trans.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/black/__pycache__/trans.cpython-311.pyc /usr/lib/python3.11/site-packages/black/_width_table.py /usr/lib/python3.11/site-packages/black/brackets.py /usr/lib/python3.11/site-packages/black/cache.py /usr/lib/python3.11/site-packages/black/comments.py /usr/lib/python3.11/site-packages/black/concurrency.py /usr/lib/python3.11/site-packages/black/const.py /usr/lib/python3.11/site-packages/black/debug.py /usr/lib/python3.11/site-packages/black/files.py /usr/lib/python3.11/site-packages/black/handle_ipynb_magics.py /usr/lib/python3.11/site-packages/black/linegen.py /usr/lib/python3.11/site-packages/black/lines.py /usr/lib/python3.11/site-packages/black/mode.py /usr/lib/python3.11/site-packages/black/nodes.py /usr/lib/python3.11/site-packages/black/numerics.py /usr/lib/python3.11/site-packages/black/output.py /usr/lib/python3.11/site-packages/black/parsing.py /usr/lib/python3.11/site-packages/black/py.typed /usr/lib/python3.11/site-packages/black/ranges.py /usr/lib/python3.11/site-packages/black/report.py /usr/lib/python3.11/site-packages/black/resources /usr/lib/python3.11/site-packages/black/resources/__init__.py /usr/lib/python3.11/site-packages/black/resources/__pycache__ /usr/lib/python3.11/site-packages/black/resources/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/black/resources/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/black/resources/black.schema.json /usr/lib/python3.11/site-packages/black/rusty.py /usr/lib/python3.11/site-packages/black/schema.py /usr/lib/python3.11/site-packages/black/strings.py /usr/lib/python3.11/site-packages/black/trans.py /usr/lib/python3.11/site-packages/blackd /usr/lib/python3.11/site-packages/blackd/__init__.py /usr/lib/python3.11/site-packages/blackd/__main__.py /usr/lib/python3.11/site-packages/blackd/__pycache__ /usr/lib/python3.11/site-packages/blackd/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/blackd/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/blackd/__pycache__/__main__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/blackd/__pycache__/__main__.cpython-311.pyc /usr/lib/python3.11/site-packages/blackd/__pycache__/client.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/blackd/__pycache__/client.cpython-311.pyc /usr/lib/python3.11/site-packages/blackd/__pycache__/middlewares.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/blackd/__pycache__/middlewares.cpython-311.pyc /usr/lib/python3.11/site-packages/blackd/client.py /usr/lib/python3.11/site-packages/blackd/middlewares.py /usr/lib/python3.11/site-packages/blib2to3 /usr/lib/python3.11/site-packages/blib2to3/Grammar.txt /usr/lib/python3.11/site-packages/blib2to3/LICENSE /usr/lib/python3.11/site-packages/blib2to3/PatternGrammar.txt /usr/lib/python3.11/site-packages/blib2to3/README /usr/lib/python3.11/site-packages/blib2to3/__init__.py /usr/lib/python3.11/site-packages/blib2to3/__pycache__ /usr/lib/python3.11/site-packages/blib2to3/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/blib2to3/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/blib2to3/__pycache__/pygram.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/blib2to3/__pycache__/pygram.cpython-311.pyc /usr/lib/python3.11/site-packages/blib2to3/__pycache__/pytree.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/blib2to3/__pycache__/pytree.cpython-311.pyc /usr/lib/python3.11/site-packages/blib2to3/pgen2 /usr/lib/python3.11/site-packages/blib2to3/pgen2/__init__.py /usr/lib/python3.11/site-packages/blib2to3/pgen2/__pycache__ /usr/lib/python3.11/site-packages/blib2to3/pgen2/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/blib2to3/pgen2/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/blib2to3/pgen2/__pycache__/conv.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/blib2to3/pgen2/__pycache__/conv.cpython-311.pyc /usr/lib/python3.11/site-packages/blib2to3/pgen2/__pycache__/driver.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/blib2to3/pgen2/__pycache__/driver.cpython-311.pyc /usr/lib/python3.11/site-packages/blib2to3/pgen2/__pycache__/grammar.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/blib2to3/pgen2/__pycache__/grammar.cpython-311.pyc /usr/lib/python3.11/site-packages/blib2to3/pgen2/__pycache__/literals.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/blib2to3/pgen2/__pycache__/literals.cpython-311.pyc /usr/lib/python3.11/site-packages/blib2to3/pgen2/__pycache__/parse.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/blib2to3/pgen2/__pycache__/parse.cpython-311.pyc /usr/lib/python3.11/site-packages/blib2to3/pgen2/__pycache__/pgen.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/blib2to3/pgen2/__pycache__/pgen.cpython-311.pyc /usr/lib/python3.11/site-packages/blib2to3/pgen2/__pycache__/token.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/blib2to3/pgen2/__pycache__/token.cpython-311.pyc /usr/lib/python3.11/site-packages/blib2to3/pgen2/__pycache__/tokenize.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/blib2to3/pgen2/__pycache__/tokenize.cpython-311.pyc /usr/lib/python3.11/site-packages/blib2to3/pgen2/conv.py /usr/lib/python3.11/site-packages/blib2to3/pgen2/driver.py /usr/lib/python3.11/site-packages/blib2to3/pgen2/grammar.py /usr/lib/python3.11/site-packages/blib2to3/pgen2/literals.py /usr/lib/python3.11/site-packages/blib2to3/pgen2/parse.py /usr/lib/python3.11/site-packages/blib2to3/pgen2/pgen.py /usr/lib/python3.11/site-packages/blib2to3/pgen2/token.py /usr/lib/python3.11/site-packages/blib2to3/pgen2/tokenize.py /usr/lib/python3.11/site-packages/blib2to3/pygram.py /usr/lib/python3.11/site-packages/blib2to3/pytree.py /usr/share/doc/packages/python311-black /usr/share/doc/packages/python311-black/CHANGES.md /usr/share/doc/packages/python311-black/README.md /usr/share/doc/packages/python311-black/authors.md /usr/share/doc/packages/python311-black/change_log.md /usr/share/doc/packages/python311-black/faq.md /usr/share/doc/packages/python311-black/getting_started.md /usr/share/doc/packages/python311-black/index.md /usr/share/doc/packages/python311-black/license.md /usr/share/libalternatives/black /usr/share/libalternatives/black/311.conf /usr/share/libalternatives/blackd /usr/share/libalternatives/blackd/311.conf /usr/share/licenses/python311-black /usr/share/licenses/python311-black/LICENSE
Generated by rpm2html 1.8.1
Fabrice Bellet, Wed Mar 4 22:25:36 2026