]>
git.madduck.net Git - etc/vim.git/blobdiff - src/black/concurrency.py
madduck's git repository
Every one of the projects in this repository is available at the canonical
URL git://git.madduck.net/madduck/pub/<projectpath> — see
each project's metadata for the exact URL.
All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@ git. madduck. net .
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
SSH access, as well as push access can be individually
arranged .
If you use my repositories frequently, consider adding the following
snippet to ~/.gitconfig and using the third clone URL listed for each
project:
[url "git://git.madduck.net/madduck/"]
insteadOf = madduck:
from mypy_extensions import mypyc_attr
from black import WriteBack, format_file_in_place
from mypy_extensions import mypyc_attr
from black import WriteBack, format_file_in_place
-from black.cache import Cache, filter_cached, read_cache, write_cache
+from black.cache import Cache
from black.mode import Mode
from black.output import err
from black.report import Changed, Report
from black.mode import Mode
from black.output import err
from black.report import Changed, Report
`write_back`, `fast`, and `mode` options are passed to
:func:`format_file_in_place`.
"""
`write_back`, `fast`, and `mode` options are passed to
:func:`format_file_in_place`.
"""
+ cache = Cache.read(mode)
if write_back not in (WriteBack.DIFF, WriteBack.COLOR_DIFF):
if write_back not in (WriteBack.DIFF, WriteBack.COLOR_DIFF):
- cache = read_cache(mode)
- sources, cached = filter_cached(cache, sources)
+ sources, cached = cache.filtered_cached(sources)
for src in sorted(cached):
report.done(src, Changed.CACHED)
if not sources:
for src in sorted(cached):
report.done(src, Changed.CACHED)
if not sources:
if cancelled:
await asyncio.gather(*cancelled, return_exceptions=True)
if sources_to_cache:
if cancelled:
await asyncio.gather(*cancelled, return_exceptions=True)
if sources_to_cache:
- write_cache(cache, sources_to_cache, mod e)
+ cache.write(sources_to_cach e)