<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Modules, branch faster-bytes-iter</title>
<subtitle>github.com: python/cpython.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/'/>
<entry>
<title> Fix atexitmodule doc (GH-21456)</title>
<updated>2020-07-26T23:33:00+00:00</updated>
<author>
<name>linchiwei123</name>
<email>40888469+linchiwei123@users.noreply.github.com</email>
</author>
<published>2020-07-26T23:33:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=52bf4706a3e35dd001f12e102c4082c4987daad5'/>
<id>52bf4706a3e35dd001f12e102c4082c4987daad5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-41369 Update to libmpdec-2.5.1: new features (GH-21593)</title>
<updated>2020-07-22T19:54:42+00:00</updated>
<author>
<name>Stefan Krah</name>
<email>skrah@bytereef.org</email>
</author>
<published>2020-07-22T19:54:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=9b9f1582753979f38d2fd927cddf0621a65e9ed6'/>
<id>9b9f1582753979f38d2fd927cddf0621a65e9ed6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-41336: Fix the error handling in zoneinfo_new_instance() (GH-21546)</title>
<updated>2020-07-20T12:51:26+00:00</updated>
<author>
<name>Zackery Spytz</name>
<email>zspytz@gmail.com</email>
</author>
<published>2020-07-20T12:51:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=eca2549f5a5048b44ca88b9555f1c62f094e3c12'/>
<id>eca2549f5a5048b44ca88b9555f1c62f094e3c12</id>
<content type='text'>
Do not call PyObject_CallMethod() with a live exception (like
KeyboardInterrupt).</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Do not call PyObject_CallMethod() with a live exception (like
KeyboardInterrupt).</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-41288: Refactor of unpickling NEWOBJ and NEWOBJ_EX opcodes. (GH-21472)</title>
<updated>2020-07-18T08:11:21+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2020-07-18T08:11:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=b4c98ed41e6c959e95b2a6f65c1b728e94039dfd'/>
<id>b4c98ed41e6c959e95b2a6f65c1b728e94039dfd</id>
<content type='text'>
* Share code for NEWOBJ and NEWOBJ_EX.
* More detailed error messages.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Share code for NEWOBJ and NEWOBJ_EX.
* More detailed error messages.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-40941: Unify implicit and explicit state in the frame and generator objects into a single value. (GH-20803)</title>
<updated>2020-07-17T10:44:23+00:00</updated>
<author>
<name>Mark Shannon</name>
<email>mark@hotpy.org</email>
</author>
<published>2020-07-17T10:44:23+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=cb9879b948a19c9434316f8ab6aba9c4601a8173'/>
<id>cb9879b948a19c9434316f8ab6aba9c4601a8173</id>
<content type='text'>
* Merge gen and frame state variables into one.

* Replace stack pointer with depth in PyFrameObject. Makes code easier to read and saves a word of memory.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Merge gen and frame state variables into one.

* Replace stack pointer with depth in PyFrameObject. Makes code easier to read and saves a word of memory.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-41195: Add getter for Openssl security level (GH-21282)</title>
<updated>2020-07-17T08:59:15+00:00</updated>
<author>
<name>matthewhughes934</name>
<email>34972397+matthewhughes934@users.noreply.github.com</email>
</author>
<published>2020-07-17T08:59:15+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=8e836bb21ce73f0794fd769db5883c29680dfe47'/>
<id>8e836bb21ce73f0794fd769db5883c29680dfe47</id>
<content type='text'>
Add an accessor under SSLContext.security_level as a wrapper around
SSL_CTX_get_security_level, see:
https://www.openssl.org/docs/manmaster/man3/SSL_CTX_get_security_level.html


------
This is my first time contributing, so please pull me up on all the things I missed or did incorrectly.

Automerge-Triggered-By: @tiran</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add an accessor under SSLContext.security_level as a wrapper around
SSL_CTX_get_security_level, see:
https://www.openssl.org/docs/manmaster/man3/SSL_CTX_get_security_level.html


------
This is my first time contributing, so please pull me up on all the things I missed or did incorrectly.

Automerge-Triggered-By: @tiran</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-40150: Fix mismatched argument in RegisterWaitForSingleObject() call (GH-19686)</title>
<updated>2020-07-15T18:43:00+00:00</updated>
<author>
<name>Zackery Spytz</name>
<email>zspytz@gmail.com</email>
</author>
<published>2020-07-15T18:43:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=af4eda46d1538b1da700a86588bdb94b0a4d1ff2'/>
<id>af4eda46d1538b1da700a86588bdb94b0a4d1ff2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix -Wstring-prototypes warnings in _zoneinfo.c. (GH-21478)</title>
<updated>2020-07-15T17:02:14+00:00</updated>
<author>
<name>Benjamin Peterson</name>
<email>benjamin@python.org</email>
</author>
<published>2020-07-15T17:02:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=0108b2a2401d0ffffe7c07e5ab69a3b0c7593070'/>
<id>0108b2a2401d0ffffe7c07e5ab69a3b0c7593070</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-41302: Fix build with system libmpdec (GH-21481)</title>
<updated>2020-07-15T12:14:11+00:00</updated>
<author>
<name>Felix Yan</name>
<email>felixonmars@archlinux.org</email>
</author>
<published>2020-07-15T12:14:11+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=015efdbef7454a522e88cd79ba2b4cd77a5fb2a2'/>
<id>015efdbef7454a522e88cd79ba2b4cd77a5fb2a2</id>
<content type='text'>
Move definition of UNUSED from modified headers of libmpdec to
_decimal.c itself. This makes the vendored source closer to the
standalone library and fixes build with --with-system-libmpdec.

Tested to build fine with either system libmpdec or the vendored one.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Move definition of UNUSED from modified headers of libmpdec to
_decimal.c itself. This makes the vendored source closer to the
standalone library and fixes build with --with-system-libmpdec.

Tested to build fine with either system libmpdec or the vendored one.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-20183: Convert _locale to the Argument Clinic (GH-14201)</title>
<updated>2020-07-15T09:07:34+00:00</updated>
<author>
<name>Zackery Spytz</name>
<email>zspytz@gmail.com</email>
</author>
<published>2020-07-15T09:07:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=bbceef6851895135c80e588a55854c1afab46499'/>
<id>bbceef6851895135c80e588a55854c1afab46499</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
