From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 9FEF12934 for ; Thu, 8 Dec 2016 21:44:41 +0100 (CET) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga101.jf.intel.com with ESMTP; 08 Dec 2016 12:44:40 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,321,1477983600"; d="scan'208";a="200585782" Received: from irsmsx108.ger.corp.intel.com ([163.33.3.3]) by fmsmga004.fm.intel.com with ESMTP; 08 Dec 2016 12:44:39 -0800 Received: from irsmsx103.ger.corp.intel.com ([169.254.3.91]) by IRSMSX108.ger.corp.intel.com ([169.254.11.159]) with mapi id 14.03.0248.002; Thu, 8 Dec 2016 20:44:39 +0000 From: "Mcnamara, John" To: Thomas Monjalon CC: "dev@dpdk.org" , "mkletzan@redhat.com" Thread-Topic: [dpdk-dev] [PATCH v2 3/4] app: give python apps a consistent shebang line Thread-Index: AQHSUWzCNqZ4aJv+d0qPNMmyXpVVoqD+O0EAgABJEFA= Date: Thu, 8 Dec 2016 20:44:38 +0000 Message-ID: References: <1481212265-10229-1-git-send-email-john.mcnamara@intel.com> <1481213032-14935-3-git-send-email-john.mcnamara@intel.com> <3898678.2vNOkO5FOW@xps13> In-Reply-To: <3898678.2vNOkO5FOW@xps13> Accept-Language: en-GB, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ctpclassification: CTP_IC x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZmM3MjIzYzQtNGE5My00OThkLTg2ZTktYThjNzkwZWMwYzc0IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6InhiS0ljT0hPS2RhdVwvUmRmbDdNWnQ3b284TmdKT1lZNXJ5Z0NDSXdSXC9JOD0ifQ== x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v2 3/4] app: give python apps a consistent shebang line X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Dec 2016 20:44:42 -0000 > -----Original Message----- > From: Thomas Monjalon [mailto:thomas.monjalon@6wind.com] > Sent: Thursday, December 8, 2016 4:21 PM > To: Mcnamara, John > Cc: dev@dpdk.org; mkletzan@redhat.com > Subject: Re: [dpdk-dev] [PATCH v2 3/4] app: give python apps a consistent > shebang line >=20 > 2016-12-08 16:03, John McNamara: > > Add a consistent "env python" shebang line to the DPDK Python apps so > > that they can call the default system python. >=20 > The shebang is only useful for executable scripts. > Those included by other python scripts should not have this line. > Please could you remove the shebang for conf.py and data files? Good point. In that case I'll squash 3/4 into 2/4 since the shebang change only affects one executable file, even though it isn't strictly a Python 3 change. John