Control: tag -1 upstream > --- /<<PKGBUILDDIR>>/tests/test-patchbomb.t > +++ /<<PKGBUILDDIR>>/tests/test-patchbomb.t.err > @@ -2419,41 +2419,11 @@ > > --config email.bcc='"Quux, A." <quux>' > this patch series consists of 1 patches. > > - > - sending [PATCH] test ... > + abort: no recipient addresses provided > + [255] > $ cat < tmp.mbox > - From quux ... ... .. ..:..:.. .... (re) > - MIME-Version: 1.0 > - Content-Type: text/plain; charset="us-ascii" > - Content-Transfer-Encoding: 7bit > - Subject: [PATCH] test > - X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab > - X-Mercurial-Series-Index: 1 > - X-Mercurial-Series-Total: 1 > - Message-Id: <8580ff50825a50c8f716.315532860@test-hostname> > - X-Mercurial-Series-Id: <8580ff50825a50c8f716.315532860@test-hostname> > - User-Agent: Mercurial-patchbomb/* (glob) > - Date: Tue, 01 Jan 1980 00:01:00 +0000 > - From: quux > - To: =?iso-8859-1?q?spam?= <spam>, eggs, toast > - Cc: foo, b...@example.com, =?iso-8859-1?q?A=2C_B_=3C=3E?= > <a...@example.com> > - Bcc: =?iso-8859-1?q?Quux=2C_A=2E?= <quux> > - > - # HG changeset patch > - # User test > - # Date 1 0 > - # Thu Jan 01 00:00:01 1970 +0000 > - # Node ID 8580ff50825a50c8f716709acdf8de0deddcd6ab > - # Parent 0000000000000000000000000000000000000000 > - a > - > - diff -r 000000000000 -r 8580ff50825a a > - --- /dev/null Thu Jan 01 00:00:00 1970 +0000 > - +++ b/a Thu Jan 01 00:00:01 1970 +0000 > - @@ -0,0 +1,1 @@ > - +a > - > - > + $TESTTMP.sh: 226: cannot open tmp.mbox: No such file > + [2] > > test flag template: > $ echo foo > intro.text > > ERROR: test-patchbomb.t output changed
It looks like this is caused by the fix for https://github.com/python/cpython/issues/102988, where "spam<spam><eggs>" used to be parsed as 2 addresses (spam and eggs), but is now rejected by email.utils.getaddresses. Cheers, Julien