From 5c025871fd7d840b09d3e02a8da81f5e979d6839 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Mon, 6 May 2024 17:39:26 -0400 Subject: [PATCH] gh-118673: Remove shebang and executable bits from tarfile. --- Lib/tarfile.py | 1 - .../next/Library/2024-05-06-17-39-52.gh-issue-118673.sTXBit.rst | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) mode change 100755 => 100644 Lib/tarfile.py create mode 100644 Misc/NEWS.d/next/Library/2024-05-06-17-39-52.gh-issue-118673.sTXBit.rst diff --git a/Lib/tarfile.py b/Lib/tarfile.py old mode 100755 new mode 100644 index 5fc6183ffcf93c..bd33368158884b --- a/Lib/tarfile.py +++ b/Lib/tarfile.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python3 #------------------------------------------------------------------- # tarfile.py #------------------------------------------------------------------- diff --git a/Misc/NEWS.d/next/Library/2024-05-06-17-39-52.gh-issue-118673.sTXBit.rst b/Misc/NEWS.d/next/Library/2024-05-06-17-39-52.gh-issue-118673.sTXBit.rst new file mode 100644 index 00000000000000..80a5b40b065185 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-05-06-17-39-52.gh-issue-118673.sTXBit.rst @@ -0,0 +1 @@ +Removed executable bits and shebang from tarfile module.