diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2024-05-29 16:43:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-29 16:43:19 (GMT) |
commit | c8b45a385ab85c3f3463b1e7394c515e892dfba7 (patch) | |
tree | 3155dfeed5e036d9110135e124a5af26618967dc /Lib/turtledemo/peace.py | |
parent | 659cb7e6b8e83e1541fc27fd29d4846e940b600e (diff) | |
download | cpython-c8b45a385ab85c3f3463b1e7394c515e892dfba7.zip cpython-c8b45a385ab85c3f3463b1e7394c515e892dfba7.tar.gz cpython-c8b45a385ab85c3f3463b1e7394c515e892dfba7.tar.bz2 |
gh-118673: Remove shebang and executable bits from stdlib modules. (#119658)
* gh-118673: Remove shebang and executable bits from stdlib modules.
* Removed shebangs and exe bits on turtledemo scripts.
The setting was inappropriate for '__main__' and inconsistent across the other modules. The scripts can still be executed directly by invoking with the desired interpreter.
Diffstat (limited to 'Lib/turtledemo/peace.py')
-rw-r--r--[-rwxr-xr-x] | Lib/turtledemo/peace.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/turtledemo/peace.py b/Lib/turtledemo/peace.py index e2ba928..fd6abe3 100755..100644 --- a/Lib/turtledemo/peace.py +++ b/Lib/turtledemo/peace.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python3 """ turtle-example-suite: tdemo_peace.py |