summaryrefslogtreecommitdiffstats
path: root/Lib/platform.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2024-05-29 16:43:19 (GMT)
committerGitHub <noreply@github.com>2024-05-29 16:43:19 (GMT)
commitc8b45a385ab85c3f3463b1e7394c515e892dfba7 (patch)
tree3155dfeed5e036d9110135e124a5af26618967dc /Lib/platform.py
parent659cb7e6b8e83e1541fc27fd29d4846e940b600e (diff)
downloadcpython-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/platform.py')
-rw-r--r--[-rwxr-xr-x]Lib/platform.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/platform.py b/Lib/platform.py
index 5958382..a4fd246 100755..100644
--- a/Lib/platform.py
+++ b/Lib/platform.py
@@ -1,5 +1,3 @@
-#!/usr/bin/env python3
-
""" This module tries to retrieve as much platform-identifying data as
possible. It makes this information available via function APIs.