[PATCH 01 of 10] py3: silence return value of file.write() in test-command-template.t

Pulkit Goyal 7895pulkit at gmail.com
Thu Mar 1 19:34:22 EST 2018


On Fri, Mar 2, 2018 at 5:56 AM, Yuya Nishihara <yuya at tcha.org> wrote:
> # HG changeset patch
> # User Yuya Nishihara <yuya at tcha.org>
> # Date 1519937847 18000
> #      Thu Mar 01 15:57:27 2018 -0500
> # Node ID 8d4520c4501899f53310e536e6bfd174cc58493a
> # Parent  761065ed3a186569a1b06b33eadbdfdb7e689df1
> py3: silence return value of file.write() in test-command-template.t
>
> diff --git a/tests/test-command-template.t b/tests/test-command-template.t
> --- a/tests/test-command-template.t
> +++ b/tests/test-command-template.t
> @@ -2219,7 +2219,7 @@ Age filter:
>    >>> import datetime
>    >>> fp = open('a', 'wb')
>    >>> n = datetime.datetime.now() + datetime.timedelta(366 * 7)
> -  >>> fp.write(b'%d-%d-%d 00:00' % (n.year, n.month, n.day))
> +  >>> fp.write(b'%d-%d-%d 00:00' % (n.year, n.month, n.day)) and None

This sounds like a good way. We need this it at a lot of places.


More information about the Mercurial-devel mailing list