summaryrefslogtreecommitdiffstats
path: root/Lib/test/subprocessdata/input_reader.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/subprocessdata/input_reader.py')
-rw-r--r--Lib/test/subprocessdata/input_reader.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/test/subprocessdata/input_reader.py b/Lib/test/subprocessdata/input_reader.py
new file mode 100644
index 0000000..ccae5f3
--- /dev/null
+++ b/Lib/test/subprocessdata/input_reader.py
@@ -0,0 +1,7 @@
+"""When called as a script, consumes the input"""
+
+import sys
+
+if __name__ = "__main__":
+ for line in sys.stdin:
+ pass