From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-4.0 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI,RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,SPF_NONE shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by dcvr.yhbt.net (Postfix) with ESMTP id 37BDC1F45E for ; Fri, 14 Feb 2020 17:01:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2404562AbgBNRBJ (ORCPT ); Fri, 14 Feb 2020 12:01:09 -0500 Received: from pb-smtp20.pobox.com ([173.228.157.52]:61266 "EHLO pb-smtp20.pobox.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2404052AbgBNRBG (ORCPT ); Fri, 14 Feb 2020 12:01:06 -0500 Received: from pb-smtp20.pobox.com (unknown [127.0.0.1]) by pb-smtp20.pobox.com (Postfix) with ESMTP id 5C043B6250; Fri, 14 Feb 2020 12:01:06 -0500 (EST) (envelope-from junio@pobox.com) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; s=sasl; bh=E3P4aqt6LXrWvNCKx4Zh/hRFt1Y=; b=hTK1OX MbfCzf2GsxQyylHVu0EeZsyceUfDV8vs6/fEdJhWWbqB5hhnSB5Ml3Hqt+tilT09 pnrKIrUvEwvrrKME6gqp6i5UR1c2msDZcbpZMpgn0+WHm+HSYeNBTMsC1z5q7rjE S0u08Jfd929f49KvAypMFVNwNWHKigitwJraA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; q=dns; s=sasl; b=OhHBNCbuAxV+khZxmSCZy4xTFpDbC0rK +yCuagYJBx/HcdJVBtUza5C/+55lajMQ/+n4UUqORNWAZhNWrt5dmT6ih9v5lCJT /d2j41Ib7e3eclNrbouvrnui5uBUWPNm1HLQrfY43wC0Tyz4WOKBfJv4qRkNPcSk uyzh14/auqM= Received: from pb-smtp20.sea.icgroup.com (unknown [127.0.0.1]) by pb-smtp20.pobox.com (Postfix) with ESMTP id 545D4B624F; Fri, 14 Feb 2020 12:01:06 -0500 (EST) (envelope-from junio@pobox.com) Received: from pobox.com (unknown [34.76.80.147]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pb-smtp20.pobox.com (Postfix) with ESMTPSA id 77838B6249; Fri, 14 Feb 2020 12:01:03 -0500 (EST) (envelope-from junio@pobox.com) From: Junio C Hamano To: Ben Keene Cc: Denton Liu , Yang Zhao , git@vger.kernel.org, SZEDER =?utf-8?Q?G?= =?utf-8?Q?=C3=A1bor?= , Johannes Schindelin , Emily Shaffer , Han-Wen Nienhuys Subject: Re: yz/p4-py3, was Re: What's cooking in git.git (Feb 2020, #03; Wed, 12) References: <20200214051505.GA16130@generichostname> <7fc48fbe-4cf4-7a0a-22f6-eac9692abc9b@gmail.com> Date: Fri, 14 Feb 2020 09:01:00 -0800 In-Reply-To: <7fc48fbe-4cf4-7a0a-22f6-eac9692abc9b@gmail.com> (Ben Keene's message of "Fri, 14 Feb 2020 09:39:50 -0500") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Pobox-Relay-ID: 955A4378-4F4B-11EA-AA88-B0405B776F7B-77302942!pb-smtp20.pobox.com Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Ben Keene writes: > On 2/14/2020 12:15 AM, Denton Liu wrote: >> This change comes from 'git-p4: restructure code in submit' in >> 'bk/p4-pre-edit-changelist' which introduced the use of the `<>` >> operator. In Python 2, this is valid but in Python 3, it was removed. >> >> We can simply replace the `<>` with `!=` which is the new way of >> writing "not equals". > Absolutely. I'm committing the change now. Thanks. I didn't mean that the use of <> was the only bug in 'pu' wrt Python 3. I see you sent a new round out, but has it been tested under Python 3 already? Just checking to set my expectation right.