<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Misc, branch benjamin-eval-loop-edit</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-34666: Implement stream.awrite() and stream.aclose() (GH-9274)</title>
<updated>2018-09-13T23:53:49+00:00</updated>
<author>
<name>Andrew Svetlov</name>
<email>andrew.svetlov@gmail.com</email>
</author>
<published>2018-09-13T23:53:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=11194c877c902a6c3b769d85be887c2272e0a541'/>
<id>11194c877c902a6c3b769d85be887c2272e0a541</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix test_asyncio for AIX - do not call transport.get_extra_info('sockname') (#8907)</title>
<updated>2018-09-13T23:35:56+00:00</updated>
<author>
<name>Michael Felt</name>
<email>aixtools@users.noreply.github.com</email>
</author>
<published>2018-09-13T23:35:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=413118ebf3162418639a5c4af14b02d26571a02c'/>
<id>413118ebf3162418639a5c4af14b02d26571a02c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>closes bpo-34661: Fix test_shutil if unzip doesn't support -t. (GH-9262)</title>
<updated>2018-09-13T17:08:46+00:00</updated>
<author>
<name>Benjamin Peterson</name>
<email>benjamin@python.org</email>
</author>
<published>2018-09-13T17:08:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=a710ebd21b09efe902dde84d4862ce5c6427f7af'/>
<id>a710ebd21b09efe902dde84d4862ce5c6427f7af</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-34653: Removed unused function PyParser_SimpleParseStringFilename. (GH-9260)</title>
<updated>2018-09-13T16:34:55+00:00</updated>
<author>
<name>Eric V. Smith</name>
<email>ericvsmith@users.noreply.github.com</email>
</author>
<published>2018-09-13T16:34:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=53c427e839d3e55d4791dca687a2d47534465a7a'/>
<id>53c427e839d3e55d4791dca687a2d47534465a7a</id>
<content type='text'>
This function was not in any .h file and was not used by Python, so removing it is safe.


https://bugs.python.org/issue34653</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This function was not in any .h file and was not used by Python, so removing it is safe.


https://bugs.python.org/issue34653</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-34658: Fix rare subprocess prexec_fn fork error. (GH-9255)</title>
<updated>2018-09-13T11:30:10+00:00</updated>
<author>
<name>Gregory P. Smith</name>
<email>greg@krypto.org</email>
</author>
<published>2018-09-13T11:30:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=a20b6adb5a5880fd22c099961eb9f9787739cefe'/>
<id>a20b6adb5a5880fd22c099961eb9f9787739cefe</id>
<content type='text'>
[bpo-34658](https://www.bugs.python.org/issue34658): Fix a rare interpreter unhandled exception state SystemError only
seen when using subprocess with a preexec_fn while an after_parent handler has
been registered with os.register_at_fork and the fork system call fails.



https://bugs.python.org/issue34658</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
[bpo-34658](https://www.bugs.python.org/issue34658): Fix a rare interpreter unhandled exception state SystemError only
seen when using subprocess with a preexec_fn while an after_parent handler has
been registered with os.register_at_fork and the fork system call fails.



https://bugs.python.org/issue34658</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-34200: Fix non-determinism of test_pkg (GH-9248)</title>
<updated>2018-09-13T00:58:40+00:00</updated>
<author>
<name>Gregory P. Smith</name>
<email>greg@krypto.org</email>
</author>
<published>2018-09-13T00:58:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=4ae8ece5cd4c5853b625381db13429f25512108d'/>
<id>4ae8ece5cd4c5853b625381db13429f25512108d</id>
<content type='text'>
This causes the tearDown code to only unimport the test modules specifically created as part of each test via the self.mkhier method rather than abusing test.support.modules_setup() and the scary test.support.modules_cleanup() code.


https://bugs.python.org/issue34200</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This causes the tearDown code to only unimport the test modules specifically created as part of each test via the self.mkhier method rather than abusing test.support.modules_setup() and the scary test.support.modules_cleanup() code.


https://bugs.python.org/issue34200</pre>
</div>
</content>
</entry>
<entry>
<title>closes bpo-34641: Further restrict the LHS of keyword argument function call syntax. (GH-9212)</title>
<updated>2018-09-13T00:14:39+00:00</updated>
<author>
<name>Benjamin Peterson</name>
<email>benjamin@python.org</email>
</author>
<published>2018-09-13T00:14:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=c9a71dd223c4ad200a97aa320aef6bd3d45f8897'/>
<id>c9a71dd223c4ad200a97aa320aef6bd3d45f8897</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>closes bpo-34652: Always disable lchmod on Linux. (GH-9234)</title>
<updated>2018-09-12T22:52:40+00:00</updated>
<author>
<name>Benjamin Peterson</name>
<email>benjamin@python.org</email>
</author>
<published>2018-09-12T22:52:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=40caa05fa4d1810a1a6bfc34e0ec930c351089b7'/>
<id>40caa05fa4d1810a1a6bfc34e0ec930c351089b7</id>
<content type='text'>

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-32933: Implement __iter__ method on mock_open() (GH-5974)</title>
<updated>2018-09-12T22:21:16+00:00</updated>
<author>
<name>Tony Flury</name>
<email>anthony.flury@btinternet.com</email>
</author>
<published>2018-09-12T22:21:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=2087023fdec2c89070bd14f384a3c308c548a94a'/>
<id>2087023fdec2c89070bd14f384a3c308c548a94a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-34630: Skip logging SSL certificate errors by asyncio code (GH-9169)</title>
<updated>2018-09-12T21:03:54+00:00</updated>
<author>
<name>Andrew Svetlov</name>
<email>andrew.svetlov@gmail.com</email>
</author>
<published>2018-09-12T21:03:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=0dd71807a98c4a86ece2aea869ea99f09204b16b'/>
<id>0dd71807a98c4a86ece2aea869ea99f09204b16b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
