##// END OF EJS Templates
phases: avoid N² behavior in `advanceboundary`...
phases: avoid N² behavior in `advanceboundary` We allowed duplicated entries in the deque, which each entry could potentially insert all its ancestors. So advancing boundary for the full repository would mean each revision would walk all its ancestors, resulting in O(N²) iteration. For repository of any decent size, N² is quickly insane. We introduce a simple set to avoid this and get back to reasonable performance.

File last commit:

r48841:58fe6d12 stable
r52398:c9ceb4f6 6.7 stable
Show More
pyproject.toml
17 lines | 244 B | application/toml | TOMLLexer
Augie Fackler
pyproject: add config file...
r47098 [build-system]
requires = ["setuptools", "wheel"]
Augie Fackler
black: merge config into main pyproject.toml now that we have it...
r47099
[tool.black]
line-length = 80
exclude = '''
build/
| wheelhouse/
| dist/
| packages/
| \.hg/
| \.mypy_cache/
| \.venv/
| mercurial/thirdparty/
'''
skip-string-normalization = true
quiet = true