<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Modules, branch datetime_backport_test</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-38324: Fix test__locale.py Windows failures (GH-20529)</title>
<updated>2020-10-20T11:39:52+00:00</updated>
<author>
<name>TIGirardi</name>
<email>tiagoigirardi@gmail.com</email>
</author>
<published>2020-10-20T11:39:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=f2312037e3a974d26ed3e23884f94c6af111a27a'/>
<id>f2312037e3a974d26ed3e23884f94c6af111a27a</id>
<content type='text'>
Use wide-char _W_* fields of lconv structure on Windows
Remove "ps_AF" from test__locale.known_numerics on Windows</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use wide-char _W_* fields of lconv structure on Windows
Remove "ps_AF" from test__locale.known_numerics on Windows</pre>
</div>
</content>
</entry>
<entry>
<title>md5module: Fix doc strings variable names (GH-22722)</title>
<updated>2020-10-20T09:10:43+00:00</updated>
<author>
<name>Jakub Jelen</name>
<email>jakuje@gmail.com</email>
</author>
<published>2020-10-20T09:10:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=d5d052127059fd99c90ea7a2e948a0242a1d7285'/>
<id>d5d052127059fd99c90ea7a2e948a0242a1d7285</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-4356: Add key function support to the bisect module (GH-20556)</title>
<updated>2020-10-20T05:04:01+00:00</updated>
<author>
<name>Raymond Hettinger</name>
<email>rhettinger@users.noreply.github.com</email>
</author>
<published>2020-10-20T05:04:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=871934d4cf00687b3d1411c6e344af311646c1ae'/>
<id>871934d4cf00687b3d1411c6e344af311646c1ae</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-41586: Add pipesize parameter to subprocess &amp; F_GETPIPE_SZ and F_SETPIPE_SZ to fcntl. (GH-21921)</title>
<updated>2020-10-19T23:30:02+00:00</updated>
<author>
<name>Ruben Vorderman</name>
<email>r.h.p.vorderman@lumc.nl</email>
</author>
<published>2020-10-19T23:30:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=23c0fb8edd16fe6d796df2853a5369fd783e05b7'/>
<id>23c0fb8edd16fe6d796df2853a5369fd783e05b7</id>
<content type='text'>
* Add F_SETPIPE_SZ and F_GETPIPE_SZ to fcntl module
* Add pipesize parameter for subprocess.Popen class

This will allow the user to control the size of the pipes.
On linux the default is 64K. When a pipe is full it blocks for writing.
When a pipe is empty it blocks for reading. On processes that are
very fast this can lead to a lot of wasted CPU cycles. On a typical
Linux system the max pipe size is 1024K which is much better.
For high performance-oriented libraries such as xopen it is nice to
be able to set the pipe size.

The workaround without this feature is to use my_popen_process.stdout.fileno() in
conjuction with fcntl and 1031 (value of F_SETPIPE_SZ) to acquire this behavior.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add F_SETPIPE_SZ and F_GETPIPE_SZ to fcntl module
* Add pipesize parameter for subprocess.Popen class

This will allow the user to control the size of the pipes.
On linux the default is 64K. When a pipe is full it blocks for writing.
When a pipe is empty it blocks for reading. On processes that are
very fast this can lead to a lot of wasted CPU cycles. On a typical
Linux system the max pipe size is 1024K which is much better.
For high performance-oriented libraries such as xopen it is nice to
be able to set the pipe size.

The workaround without this feature is to use my_popen_process.stdout.fileno() in
conjuction with fcntl and 1031 (value of F_SETPIPE_SZ) to acquire this behavior.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-16396: Allow wintypes to be imported on non-Windows systems. (GH-21394)</title>
<updated>2020-10-19T22:06:05+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2020-10-19T22:06:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=5456e78f4593edc277ab72fb9a9db1ebae7d4c2d'/>
<id>5456e78f4593edc277ab72fb9a9db1ebae7d4c2d</id>
<content type='text'>
Co-authored-by: Christian Heimes &lt;christian@python.org&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Christian Heimes &lt;christian@python.org&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-20184: Convert termios to Argument Clinic. (GH-22693)</title>
<updated>2020-10-18T14:54:06+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2020-10-18T14:54:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=1bcaa81e520e30f920bd69e46fbf1d67a9107ce1'/>
<id>1bcaa81e520e30f920bd69e46fbf1d67a9107ce1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-41919, test_codecs: Move codecs.register calls to setUp() (GH-22513)</title>
<updated>2020-10-16T08:34:15+00:00</updated>
<author>
<name>Hai Shi</name>
<email>shihai1992@gmail.com</email>
</author>
<published>2020-10-16T08:34:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=c9f696cb96d1c362d5cad871f61da520572d9b08'/>
<id>c9f696cb96d1c362d5cad871f61da520572d9b08</id>
<content type='text'>
* Move the codecs' (un)register operation to testcases.
* Remove _codecs._forget_codec() and _PyCodec_Forget()</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Move the codecs' (un)register operation to testcases.
* Remove _codecs._forget_codec() and _PyCodec_Forget()</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-1635741: Add a global module state to unicodedata (GH-22712)</title>
<updated>2020-10-15T14:22:19+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@python.org</email>
</author>
<published>2020-10-15T14:22:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=e6b8c5263a7fcf5b95d0fd4c900e5949eeb6630d'/>
<id>e6b8c5263a7fcf5b95d0fd4c900e5949eeb6630d</id>
<content type='text'>
Prepare unicodedata to add a state per module: start with a global
"module" state, pass it to subfunctions which access &amp;UCD_Type. This
change also prepares the conversion of the UCD_Type static type to a
heap type.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Prepare unicodedata to add a state per module: start with a global
"module" state, pass it to subfunctions which access &amp;UCD_Type. This
change also prepares the conversion of the UCD_Type static type to a
heap type.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-42021: Fix possible ref leaks during _sqlite3 module init (GH-22673)</title>
<updated>2020-10-15T12:20:15+00:00</updated>
<author>
<name>Erlend Egeberg Aasland</name>
<email>erlend.aasland@innova.no</email>
</author>
<published>2020-10-15T12:20:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=644e94272a89196801825cb69a56377bf62d256a'/>
<id>644e94272a89196801825cb69a56377bf62d256a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-41984: GC track all user classes (GH-22701)</title>
<updated>2020-10-15T01:44:07+00:00</updated>
<author>
<name>Brandt Bucher</name>
<email>brandtbucher@gmail.com</email>
</author>
<published>2020-10-15T01:44:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=c13b847a6f913b72eeb71651ff626390b738d973'/>
<id>c13b847a6f913b72eeb71651ff626390b738d973</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
