From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=195.135.221.5; helo=smtp.nue.novell.com; envelope-from=glin@suse.com; receiver=edk2-devel@lists.01.org Received: from smtp.nue.novell.com (smtp.nue.novell.com [195.135.221.5]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 56F2F210D93BD for ; Fri, 22 Jun 2018 01:45:53 -0700 (PDT) Received: from emea4-mta.ukb.novell.com ([10.120.13.87]) by smtp.nue.novell.com with ESMTP (TLS encrypted); Fri, 22 Jun 2018 10:45:51 +0200 Received: from GaryWorkstation (nwb-a10-snat.microfocus.com [10.120.13.201]) by emea4-mta.ukb.novell.com with ESMTP (TLS encrypted); Fri, 22 Jun 2018 09:45:42 +0100 Date: Fri, 22 Jun 2018 16:45:37 +0800 From: Gary Lin To: "Zhu, Yonghong" Cc: "edk2-devel@lists.01.org" , "Gao, Liming" Message-ID: <20180622084537.5c262wd2fnafmpil@GaryWorkstation> References: <20180621044346.28495-1-glin@suse.com> <20180621044346.28495-6-glin@suse.com> <20180622020405.qyazporzykhww7u7@GaryWorkstation> <20180622082122.bj6rpjgfcbsbeohf@GaryWorkstation> MIME-Version: 1.0 In-Reply-To: <20180622082122.bj6rpjgfcbsbeohf@GaryWorkstation> User-Agent: NeoMutt/20170912 (1.9.0) Subject: Re: [PATCH v3 05/20] BaseTools: Use the python3-range functions X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2018 08:45:55 -0000 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Fri, Jun 22, 2018 at 04:21:23PM +0800, Gary Lin wrote: > On Fri, Jun 22, 2018 at 05:29:21AM +0000, Zhu, Yonghong wrote: > > Hi Gary, > > > > Patch 03 used some Tab characters, Patch 17 has some Trailing whitespace. You can use the BaseTools\Scripts\PatchCheck.py to check its format. > > > Ok, will fix them in the next version. > > > I try to build OVMF platform, it directly report error: > > from .BuildReport import BuildReport > > ValueError: Attempted relative import in non-package > > > I didn't see this in my system. Will investigate what's wrong. > Hi Yonghong, The error showed when I reverted patch 16. Would you mind to check whether patch 16 was applied or not? Thanks, Gary Lin > Thanks, > > Gary Lin > > > Best Regards, > > Zhu Yonghong > > > > -----Original Message----- > > From: Gary Lin [mailto:glin@suse.com] > > Sent: Friday, June 22, 2018 10:04 AM > > To: Zhu, Yonghong > > Cc: edk2-devel@lists.01.org; Gao, Liming > > Subject: Re: [edk2] [PATCH v3 05/20] BaseTools: Use the python3-range functions > > > > On Thu, Jun 21, 2018 at 12:40:29PM +0000, Zhu, Yonghong wrote: > > > Hi Gary, > > > > > > Python 2.7 doesn't have the module builtins, if we apply this patch now, it will cause build failure on Python 2.7. > > > > > Urhh, I thought it's a "built-in" module but it's actually from > > python-future. > > > > I'll revert this patch and post a new patchset. > > BTW, would you might review the first patch? It's just a typo fix and I > > just caught it while running the futurize script, so the patch is > > actually independent from this patch series. > > > > Thanks, > > > > Gary Lin > > > > > Best Regards, > > > Zhu Yonghong > > > > > > > > > -----Original Message----- > > > From: Gary Lin [mailto:glin@suse.com] > > > Sent: Thursday, June 21, 2018 12:44 PM > > > To: edk2-devel@lists.01.org > > > Cc: Zhu, Yonghong ; Gao, Liming > > > Subject: [PATCH v3 05/20] BaseTools: Use the python3-range functions > > > > > > Replace xrange() and range() with the newer range() function Based on "futurize -f libfuturize.fixes.fix_xrange_with_import" > > > > > > Contributed-under: TianoCore Contribution Agreement 1.1 > > > Cc: Yonghong Zhu > > > Cc: Liming Gao > > > Signed-off-by: Gary Lin