<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git, branch type-comments</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>Add CHECK() around _PyPegen_seq_append_to_end() call</title>
<updated>2020-04-30T17:54:29+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>2020-04-30T17:54:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=fecd8e89615371813bd01440155ac47ff7342220'/>
<id>fecd8e89615371813bd01440155ac47ff7342220</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>More thorough error checks in NEW_TYPE_COMMENT</title>
<updated>2020-04-30T15:41:41+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>2020-04-30T15:41:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=d081578207a9a61a158501a41d81975dfa1e365c'/>
<id>d081578207a9a61a158501a41d81975dfa1e365c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactoring some things in response to review</title>
<updated>2020-04-30T02:04:07+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>2020-04-30T02:04:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=fd2794ba2ff959e2fb1cb98e8b1f1beecf9f98e3'/>
<id>fd2794ba2ff959e2fb1cb98e8b1f1beecf9f98e3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Suggestions from code review</title>
<updated>2020-04-29T20:26:50+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>2020-04-29T20:26:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=c8a2888e5d7f5a337fdd8b3b0ebb34d919c68d50'/>
<id>c8a2888e5d7f5a337fdd8b3b0ebb34d919c68d50</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix bug in add_type_comment()</title>
<updated>2020-04-29T19:31:19+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>2020-04-29T19:31:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=86d9f6957f462837bc77d925099cdcf5f2ee82da'/>
<id>86d9f6957f462837bc77d925099cdcf5f2ee82da</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'origin/master' into type-comments</title>
<updated>2020-04-29T17:06:24+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>2020-04-29T17:06:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=da253f3a72bb14d21e4c2d6114d2058f92831aaf'/>
<id>da253f3a72bb14d21e4c2d6114d2058f92831aaf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-40286: Remove C implementation of Random.randbytes() (GH-19797)</title>
<updated>2020-04-29T16:49:00+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@python.org</email>
</author>
<published>2020-04-29T16:49:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=2d8757758d0d75882fef0fe0e3c74c4756b3e81e'/>
<id>2d8757758d0d75882fef0fe0e3c74c4756b3e81e</id>
<content type='text'>
Remove _random.Random.randbytes(): the C implementation of
randbytes(). Implement the method in Python to ease subclassing:
randbytes() now directly reuses getrandbits().</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove _random.Random.randbytes(): the C implementation of
randbytes(). Implement the method in Python to ease subclassing:
randbytes() now directly reuses getrandbits().</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-9216: Expose OpenSSL FIPS_mode() as _hashlib.get_fips_mode() (GH-19703)</title>
<updated>2020-04-29T16:04:22+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@python.org</email>
</author>
<published>2020-04-29T16:04:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=e3dfb9b967c560f4d094092dcae4a16fc9634681'/>
<id>e3dfb9b967c560f4d094092dcae4a16fc9634681</id>
<content type='text'>
test.pythoninfo logs OpenSSL FIPS_mode() and Linux
/proc/sys/crypto/fips_enabled in a new "fips" section.

Co-Authored-By: Petr Viktorin &lt;encukou@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
test.pythoninfo logs OpenSSL FIPS_mode() and Linux
/proc/sys/crypto/fips_enabled in a new "fips" section.

Co-Authored-By: Petr Viktorin &lt;encukou@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>What's New in Python 3.9: Reorganize C API Changes (GH-19794)</title>
<updated>2020-04-29T15:57:25+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@python.org</email>
</author>
<published>2020-04-29T15:57:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=e5963ee32035d279c12ef32e87205d4c3e5e4a0e'/>
<id>e5963ee32035d279c12ef32e87205d4c3e5e4a0e</id>
<content type='text'>
Move Build Changes and C API Changes to the end of the document.
Most Python users don't build Python themselves and don't use the C
API. Other changes:

* Add Build Changes section
* Add sub-sections to the C API Changes
* Sort modules in Improved Modules section: move nntplib after
  multiprocessing</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Move Build Changes and C API Changes to the end of the document.
Most Python users don't build Python themselves and don't use the C
API. Other changes:

* Add Build Changes section
* Add sub-sections to the C API Changes
* Sort modules in Improved Modules section: move nntplib after
  multiprocessing</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-40228: More robust frame.setlineno. (GH-19437)</title>
<updated>2020-04-29T15:49:45+00:00</updated>
<author>
<name>Mark Shannon</name>
<email>mark@hotpy.org</email>
</author>
<published>2020-04-29T15:49:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=57697245e1deafdedf68e5f21ad8890be591efc0'/>
<id>57697245e1deafdedf68e5f21ad8890be591efc0</id>
<content type='text'>
More robust frame.setlineno. Makes no assumptions about source-&gt;bytecode translation.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
More robust frame.setlineno. Makes no assumptions about source-&gt;bytecode translation.</pre>
</div>
</content>
</entry>
</feed>
