From mboxrd@z Thu Jan 1 00:00:00 1970 From: Troy Sankey Subject: Re: [UX] real names exposed Date: Sat, 03 Sep 2016 18:21:07 -0400 Message-ID: <147294126799.23966.17879039892323433100@what> References: <147266794967.23966.13712862947716543821@what> <20160831231110.GB18814@jasmine> <87wpiwt2qx.fsf@gnu.org> <147291661814.23966.15325855743314158034@what> Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="pgp-sha256"; boundary="===============0176623296==" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34428) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bgJJP-0002AA-7f for help-guix@gnu.org; Sat, 03 Sep 2016 18:21:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bgJJO-0001kA-0r for help-guix@gnu.org; Sat, 03 Sep 2016 18:21:19 -0400 Content-Disposition: inline In-Reply-To: <147291661814.23966.15325855743314158034@what> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Ludovic =?utf-8?Q?Court=C3=A8s?= , Eric Bavier Cc: help-guix@gnu.org, Help-Guix --===============0176623296== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable I suspect the scope of this UX "bug" is larger than python. I think this p= robably affects every executable written in an interpreted language and using a shebang. Here's another example with a bash script: $ cat > t.sh #!/bin/bash sed 's/\x0/\\0/g' # replaces null bytes with a visible '\0' = $ ./t.sh s.sh #!/bin/bash echo $0 = $ ./s.sh