summaryrefslogtreecommitdiffstats
path: root/test/Scanner/Python/script.py
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2021-05-24 23:06:13 (GMT)
committerGitHub <noreply@github.com>2021-05-24 23:06:13 (GMT)
commit548d1ffa13be5ed5521f4650089c5e9d7d043811 (patch)
tree9276cb26f9b9fb34efa46615ba15dfbdacefabfe /test/Scanner/Python/script.py
parent08ea935321ab8858e15573e44c270da563e12ea0 (diff)
parent0d9a99d630169277689e95e39ae64ccf9b9215bf (diff)
downloadSCons-548d1ffa13be5ed5521f4650089c5e9d7d043811.zip
SCons-548d1ffa13be5ed5521f4650089c5e9d7d043811.tar.gz
SCons-548d1ffa13be5ed5521f4650089c5e9d7d043811.tar.bz2
Merge branch 'master' into ninja-generation
Diffstat (limited to 'test/Scanner/Python/script.py')
-rw-r--r--test/Scanner/Python/script.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Scanner/Python/script.py b/test/Scanner/Python/script.py
new file mode 100644
index 0000000..105a575
--- /dev/null
+++ b/test/Scanner/Python/script.py
@@ -0,0 +1,6 @@
+import package1 # noqa: F401
+import package2 # noqa: F401
+import sys
+
+with open(sys.argv[1], 'w') as f:
+ f.write('test')