black.toml
author Yuya Nishihara <yuya@tcha.org>
Sun, 15 Sep 2019 22:06:19 +0900
changeset 43284 ce6dd1cee4c8
parent 43225 8343070ed758
child 43348 daa3b58906d5
permissions -rw-r--r--
rust-cpython: put leaked reference in PyLeakedRef The next patch will make PyLeakedRef manage the lifetime of the underlying object. leak_handle.data.take() will be removed soon.

[tool.black]
line-length = 80
exclude = '''
build/
| wheelhouse/
| dist/
| packages/
| \.hg/
| \.mypy_cache/
| \.venv/
| mercurial/thirdparty/
| hgext/fsmonitor/pywatchman/
| contrib/python-zstandard/
| contrib/grey.py
'''
skip-string-normalization = true
quiet = true