From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 2774F36E for ; Tue, 5 Apr 2016 08:34:08 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP; 04 Apr 2016 23:34:08 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.24,443,1455004800"; d="scan'208";a="938416460" Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by fmsmga001.fm.intel.com with ESMTP; 04 Apr 2016 23:34:07 -0700 Received: from fmsmsx115.amr.corp.intel.com (10.18.116.19) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.248.2; Mon, 4 Apr 2016 23:34:07 -0700 Received: from shsmsx151.ccr.corp.intel.com (10.239.6.50) by fmsmsx115.amr.corp.intel.com (10.18.116.19) with Microsoft SMTP Server (TLS) id 14.3.248.2; Mon, 4 Apr 2016 23:34:07 -0700 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.24]) by SHSMSX151.ccr.corp.intel.com ([169.254.3.18]) with mapi id 14.03.0248.002; Tue, 5 Apr 2016 14:34:05 +0800 From: "Liu, Yong" To: "Rosen, Rami" CC: "dts@dpdk.org" Thread-Topic: [PATCH] framework: Use regualr expression instead of regression in import comment. Thread-Index: AQHRjAzV2oZcoJTqqkyRhHgxm63Y2Z968h/A Date: Tue, 5 Apr 2016 06:34:05 +0000 Message-ID: <86228AFD5BCD8E4EBFD2B90117B5E81E14EDB802@SHSMSX103.ccr.corp.intel.com> References: <1459511538-23492-1-git-send-email-rami.rosen@intel.com> In-Reply-To: <1459511538-23492-1-git-send-email-rami.rosen@intel.com> Accept-Language: zh-CN, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZDhiNGM1NWItZWZkNS00YmI2LWFjYTctOTFiMjA2NDI1NmIwIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6ImVYTHFLeDBpS3lXTTRDc3pWdTRSNGpIemdQOGVhV1lMXC9CckpneCtJNWJNPSJ9 x-ctpclassification: CTP_IC x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dts] [PATCH] framework: Use regualr expression instead of regression in import comment. X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Apr 2016 06:34:10 -0000 Thanks Rami. Applied. > -----Original Message----- > From: Rosen, Rami > Sent: Friday, April 01, 2016 7:52 PM > To: Liu, Yong > Cc: dts@dpdk.org; Rosen, Rami > Subject: [PATCH] framework: Use regualr expression instead of regression > in import comment. >=20 > "import re" implies using python Regular Expressions module and > not regression module. This patch fixed this comment. >=20 > Signed-off-by: Rami Rosen > --- > framework/dts.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > diff --git a/framework/dts.py b/framework/dts.py > index 6c3808b..7310bda 100644 > --- a/framework/dts.py > +++ b/framework/dts.py > @@ -29,7 +29,7 @@ > # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE > # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. >=20 > -import re # regression module > +import re # regular expressions module > import ConfigParser # config parse module > import os # operation system module > import texttable # text format > -- > 2.5.5