From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas.monjalon@6wind.com>
Received: from mail-wm0-f54.google.com (mail-wm0-f54.google.com [74.125.82.54])
 by dpdk.org (Postfix) with ESMTP id 229102A66
 for <dev@dpdk.org>; Thu,  8 Dec 2016 17:20:58 +0100 (CET)
Received: by mail-wm0-f54.google.com with SMTP id g23so224699089wme.1
 for <dev@dpdk.org>; Thu, 08 Dec 2016 08:20:58 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=6wind-com.20150623.gappssmtp.com; s=20150623;
 h=from:to:cc:subject:date:message-id:user-agent:in-reply-to
 :references:mime-version:content-transfer-encoding;
 bh=1Uqx76+HqzC6bdX/9XDn4nMnQb7ehmyYoakmJWOSLL8=;
 b=0jbL+xTKAguo54xZMcegofv+yJoxW/egu31KSltf4/5cTc2jQS3gOaRerF8f8DFn/2
 BTEmxjIgZdtQWIMpSBqqrMSCDSTwD6VNpYWJexrylifHtn9RsXhgmdFz+SOl1G3oRdEp
 XL4ECwWsNhpSQIuXZoAKFW1dYEoDp9th2hIGE7pRw32H3HaXBgrFrZue8CWyHkNBzDdt
 oOrGt16O4fHIAyFFSlDg/PU8gT1gkiH4dn/0JHSl9V/h9i0S3poZE36+1TyYKcZ1LGP1
 GAaTYUYEU8H8HOZ1vUJ+Yw9ESZaAOPHgFgR3t+Xpu5/9Zk3EbEr/atfkKEyMu75VkZM0
 dy8A==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20130820;
 h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent
 :in-reply-to:references:mime-version:content-transfer-encoding;
 bh=1Uqx76+HqzC6bdX/9XDn4nMnQb7ehmyYoakmJWOSLL8=;
 b=GijFP7N9bOqA/+IgYpMDUdNqHvsAo+bmWHkEP+wrmfnW0HZPE1lI6EhcZunBAGWvi+
 sT3kJYbV95GQkYHVPIG06vp7gMuAUIr3muRJgYZo569fU3xw9h/yd2FdFj+CyrMzytEM
 Y9rmvpYMdxSfXOfo2Q+ycWr4QXQctvWky/8JxfncyOYK/zOAZ3rAkcn3KNj+QQrMcyVo
 djTkIEebh7LsKdrjFP+v805PaCxGwxUrVyqC+vF4auUR9xvM+8S7xAv9bCYN5b3DMkxz
 NmkssDehwr3XQ5BoBRtXAkb0fiU1gmkhb8LJPJnD8Y3T3HNeyODy/e55+0zHEJpm3vby
 nJkA==
X-Gm-Message-State: AKaTC02f0Wpton0f7joG5/AF5OIGRubO1Cy6rubk4O+qN1WRyx+h6KAaYtqn0HN94weooYkD
X-Received: by 10.28.173.4 with SMTP id w4mr2826912wme.70.1481214057881;
 Thu, 08 Dec 2016 08:20:57 -0800 (PST)
Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184])
 by smtp.gmail.com with ESMTPSA id d184sm16085593wmd.8.2016.12.08.08.20.56
 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);
 Thu, 08 Dec 2016 08:20:57 -0800 (PST)
From: Thomas Monjalon <thomas.monjalon@6wind.com>
To: John McNamara <john.mcnamara@intel.com>
Cc: dev@dpdk.org, mkletzan@redhat.com
Date: Thu, 08 Dec 2016 17:20:56 +0100
Message-ID: <3898678.2vNOkO5FOW@xps13>
User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; )
In-Reply-To: <1481213032-14935-3-git-send-email-john.mcnamara@intel.com>
References: <1481212265-10229-1-git-send-email-john.mcnamara@intel.com>
 <1481213032-14935-3-git-send-email-john.mcnamara@intel.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 7Bit
Content-Type: text/plain; charset="us-ascii"
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 <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Thu, 08 Dec 2016 16:20:59 -0000

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.

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?