D3128: py3: suppress the output of open() using `and None`

pulkit (Pulkit Goyal) phabricator at mercurial-scm.org
Thu Apr 5 09:48:14 EDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rHG87c4253bebdb: py3: suppress the output of open() using `and None` (authored by pulkit, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D3128?vs=7711&id=7726

REVISION DETAIL
  https://phab.mercurial-scm.org/D3128

AFFECTED FILES
  tests/test-diffstat.t

CHANGE DETAILS

diff --git a/tests/test-diffstat.t b/tests/test-diffstat.t
--- a/tests/test-diffstat.t
+++ b/tests/test-diffstat.t
@@ -35,7 +35,7 @@
 
   $ hg ci -m appenda
 
-  >>> open("c", "wb").write(b"\0")
+  >>> open("c", "wb").write(b"\0") and None
   $ touch d
   $ hg add c d
 
@@ -54,7 +54,7 @@
 
   $ hg ci -m createb
 
-  >>> open("file with spaces", "wb").write(b"\0")
+  >>> open("file with spaces", "wb").write(b"\0") and None
   $ hg add "file with spaces"
 
 Filename with spaces diffstat:



To: pulkit, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list