summaryrefslogtreecommitdiff
path: root/Tools/unittestgui
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-01-16 17:15:49 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2014-01-16 17:15:49 +0200
commit43b53737ca5727e909f644f1419a254e65f60faf (patch)
treebf1de82281200de3ae2f2dd1a508960fa6da4732 /Tools/unittestgui
parent38933685dbd645e0f5ec391eead4e3f3e95b2583 (diff)
downloadcpython-43b53737ca5727e909f644f1419a254e65f60faf.tar.gz
Issue #19936: Added executable bits or shebang lines to Python scripts which
requires them. Disable executable bits and shebang lines in test and benchmark files in order to prevent using a random system python, and in source files of modules which don't provide command line interface. Fixed shebang line to use python3 executable in the unittestgui script.
Diffstat (limited to 'Tools/unittestgui')
-rwxr-xr-x[-rw-r--r--]Tools/unittestgui/unittestgui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/unittestgui/unittestgui.py b/Tools/unittestgui/unittestgui.py
index 09a20e28e7..c3b5fa4584 100644..100755
--- a/Tools/unittestgui/unittestgui.py
+++ b/Tools/unittestgui/unittestgui.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
"""
GUI framework and application for use with Python unit testing framework.
Execute tests written using the framework provided by the 'unittest' module.