<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Lib/test, branch master</title>
<subtitle>github.com: python/cpython.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/'/>
<entry>
<title>bpo-45410: libregrtest -jN writes stderr into stdout (GH-28819)</title>
<updated>2021-10-08T15:14:37+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@python.org</email>
</author>
<published>2021-10-08T15:14:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=b108db63e02797a795840152b82cab9792fd3ed2'/>
<id>b108db63e02797a795840152b82cab9792fd3ed2</id>
<content type='text'>
When libregrtest spawns a worker process, stderr is now written into
stdout to keep messages order. Use a single pipe for stdout and
stderr, rather than two pipes. Previously, messages were out of order
which made analysis of buildbot logs harder</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When libregrtest spawns a worker process, stderr is now written into
stdout to keep messages order. Use a single pipe for stdout and
stderr, rather than two pipes. Previously, messages were out of order
which made analysis of buildbot logs harder</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-45408: Don't override previous tokenizer errors in the second parser pass (GH-28812)</title>
<updated>2021-10-07T21:33:05+00:00</updated>
<author>
<name>Pablo Galindo Salgado</name>
<email>Pablogsal@gmail.com</email>
</author>
<published>2021-10-07T21:33:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=0219017df7ec41839fd0d56a3076b5f09c58d313'/>
<id>0219017df7ec41839fd0d56a3076b5f09c58d313</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-45337: Use the realpath of the new executable when creating a venv on Windows (GH-28663)</title>
<updated>2021-10-07T20:26:12+00:00</updated>
<author>
<name>Steve Dower</name>
<email>steve.dower@python.org</email>
</author>
<published>2021-10-07T20:26:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=6811fdaec825bd6ab64e358a4b480108f5634d2d'/>
<id>6811fdaec825bd6ab64e358a4b480108f5634d2d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-45403: Fix test_sys.test_stdlib_dir() (GH-28785)</title>
<updated>2021-10-07T19:22:28+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@python.org</email>
</author>
<published>2021-10-07T19:22:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=768aaf6c433e6a13b82c7bdebd0062c7472c1fc7'/>
<id>768aaf6c433e6a13b82c7bdebd0062c7472c1fc7</id>
<content type='text'>
Fix test_sys.test_stdlib_dir() when Python is built outside the
source tree: compare normalized paths.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix test_sys.test_stdlib_dir() when Python is built outside the
source tree: compare normalized paths.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-45400: Fix suggestion test of test_exceptions (GH-28783)</title>
<updated>2021-10-07T11:47:23+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@python.org</email>
</author>
<published>2021-10-07T11:47:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=4e605666b08b8f863cbbbdaa34bb06988e648d26'/>
<id>4e605666b08b8f863cbbbdaa34bb06988e648d26</id>
<content type='text'>
Fix test_name_error_suggestions_do_not_trigger_for_too_many_locals()
of test_exceptions if a directory name contains "a1" (like
"Python-3.11.0a1"): use a stricter regular expression.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix test_name_error_suggestions_do_not_trigger_for_too_many_locals()
of test_exceptions if a directory name contains "a1" (like
"Python-3.11.0a1"): use a stricter regular expression.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-35970: Add help flag to base64 module (GH-28774)</title>
<updated>2021-10-07T01:38:43+00:00</updated>
<author>
<name>Ammar Askar</name>
<email>ammar@ammaraskar.com</email>
</author>
<published>2021-10-07T01:38:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=5baec4aea6821256f5d1785a6bd596fab069f1b6'/>
<id>5baec4aea6821256f5d1785a6bd596fab069f1b6</id>
<content type='text'>
This continues off rkuska's work from https://github.com/python/cpython/pull/11789 seeing as the patch wasn't updated to add tests.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This continues off rkuska's work from https://github.com/python/cpython/pull/11789 seeing as the patch wasn't updated to add tests.</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typos in the Lib directory (GH-28775)</title>
<updated>2021-10-06T23:13:48+00:00</updated>
<author>
<name>Christian Clauss</name>
<email>cclauss@me.com</email>
</author>
<published>2021-10-06T23:13:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=745c9d9dfc1ad6fdfdf1d07420c6273ff67fa5be'/>
<id>745c9d9dfc1ad6fdfdf1d07420c6273ff67fa5be</id>
<content type='text'>
Fix typos in the Lib directory as identified by codespell.

Co-authored-by: Terry Jan Reedy &lt;tjreedy@udel.edu&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix typos in the Lib directory as identified by codespell.

Co-authored-by: Terry Jan Reedy &lt;tjreedy@udel.edu&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-40321: Add missing test, slightly expand documentation (GH-28760)</title>
<updated>2021-10-06T15:28:16+00:00</updated>
<author>
<name>Łukasz Langa</name>
<email>lukasz@langa.pl</email>
</author>
<published>2021-10-06T15:28:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=f528045f695f7483d955a1eae4c1df68b1b4cacd'/>
<id>f528045f695f7483d955a1eae4c1df68b1b4cacd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-40116: Add insertion order bit-vector to dict values to allow dicts to share keys more freely. (GH-28520)</title>
<updated>2021-10-06T12:19:53+00:00</updated>
<author>
<name>Mark Shannon</name>
<email>mark@hotpy.org</email>
</author>
<published>2021-10-06T12:19:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=a7252f88d3fa33036bdd6036b8c97bc785ed6f17'/>
<id>a7252f88d3fa33036bdd6036b8c97bc785ed6f17</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Normalize jumps in compiler. All forward jumps to use JUMP_FORWARD. (GH-28755)</title>
<updated>2021-10-06T12:05:45+00:00</updated>
<author>
<name>Mark Shannon</name>
<email>mark@hotpy.org</email>
</author>
<published>2021-10-06T12:05:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=f6eafe18c004c55082de40d20cad084ef9dd3db7'/>
<id>f6eafe18c004c55082de40d20cad084ef9dd3db7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
