tor

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

commit 978b7ef45c21169a01a81cd1b206530cbcd47fe2
parent a40d539f7cce851a4a66c68a14917e1681972475
Author: Nick Mathewson <nickm@torproject.org>
Date:   Thu, 26 Mar 2020 12:30:30 -0400

Teach --check-subsystem-order to take input from stdin

Diffstat:
Mscripts/maint/practracker/includes.py | 9++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/scripts/maint/practracker/includes.py b/scripts/maint/practracker/includes.py @@ -254,11 +254,18 @@ def walk_c_files(topdir="src"): for err in consider_include_rules(fullpath, f): yield err +def open_or_stdin(fname): + if fname == '-': + return sys.stdin + else: + return open(fname) + def check_subsys_file(fname, uses_dirs): uses_closure = closure(uses_dirs) ok = True previous_subsystems = [] - with open(fname) as f: + + with open_or_stdin(fname) as f: for line in f: _, name, fname = line.split() fname = re.sub(r'^.*/src/', "", fname)