tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit fae29f7b424460353b3a5ab44e1394fdc28cc4c4
parent c3c8c926bfc8e44e28f3a404e3452f014f6bcbaa
Author: Nick Mathewson <nickm@torproject.org>
Date:   Wed,  7 Nov 2018 10:59:23 -0500

Make the topological-sort output off by default

Diffstat:
Mscripts/maint/checkIncludes.py | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/scripts/maint/checkIncludes.py b/scripts/maint/checkIncludes.py @@ -135,6 +135,7 @@ def load_include_rules(fname): return result list_unused = False +log_sorted_levels = False uses_dirs = { } @@ -169,11 +170,12 @@ while uses_dirs: for k in cur_level: del uses_dirs[k] n += 1 - if cur_level: + if cur_level and log_sorted_levels: print(n, cur_level) if n > 100: break if uses_dirs: - print("Circular dependencies in here somewhere:", uses_dirs) + print("There are circular .may_include dependencies in here somewhere:", + uses_dirs) sys.exit(1)