<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Lib/distutils/command, branch bind-socket</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>bpo-31292: Fixed distutils check --restructuredtext for include directives (GH-10605)</title>
<updated>2019-03-27T21:34:19+00:00</updated>
<author>
<name>Philipp A</name>
<email>flying-sheep@web.de</email>
</author>
<published>2019-03-27T21:34:19+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=d5a5a33f12b60129d57f9b423b77d2fcba506834'/>
<id>d5a5a33f12b60129d57f9b423b77d2fcba506834</id>
<content type='text'>

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-35299: Fixed sysconfig and distutils during PGO profiling (GH-11744)</title>
<updated>2019-02-05T01:15:13+00:00</updated>
<author>
<name>Steve Dower</name>
<email>steve.dower@microsoft.com</email>
</author>
<published>2019-02-05T01:15:13+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=85e102a2b090dd693d0801ae2edb9660cfa0f281'/>
<id>85e102a2b090dd693d0801ae2edb9660cfa0f281</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-11191: skip unsupported test_distutils case for AIX with xlc (GH-8709)</title>
<updated>2018-12-28T14:03:17+00:00</updated>
<author>
<name>Michael Felt</name>
<email>aixtools@users.noreply.github.com</email>
</author>
<published>2018-12-28T14:03:17+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=ed57e13df60ce28ba89bd49c9c5a15b1d9bf79c7'/>
<id>ed57e13df60ce28ba89bd49c9c5a15b1d9bf79c7</id>
<content type='text'>
Command line options for the xlc compiler behave differently from gcc and clang,
so skip this test case for now when xlc is the compiler.

Patch by aixtools (Michael Felt)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Command line options for the xlc compiler behave differently from gcc and clang,
so skip this test case for now when xlc is the compiler.

Patch by aixtools (Michael Felt)
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-22831: Use "with" to avoid possible fd leaks in distutils. (GH-10921)</title>
<updated>2018-12-20T17:00:14+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2018-12-20T17:00:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=c5d5dfdb223efb0e668e3f317d31b8b70ae96aa6'/>
<id>c5d5dfdb223efb0e668e3f317d31b8b70ae96aa6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-35186: Remove "built with" comment in setup.py upload (GH-10414)</title>
<updated>2018-12-17T07:59:02+00:00</updated>
<author>
<name>Paul Ganssle</name>
<email>pganssle@users.noreply.github.com</email>
</author>
<published>2018-12-17T07:59:02+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=4e80f5cbeaee87a26e49bc9623c92a10e28dbbd9'/>
<id>4e80f5cbeaee87a26e49bc9623c92a10e28dbbd9</id>
<content type='text'>
platform.dist() is deprecated and slated for removal in Python 3.8. The
upload command itself should also not be used to upload to PyPI, but
while it continues to exist it should not use deprecated functions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
platform.dist() is deprecated and slated for removal in Python 3.8. The
upload command itself should also not be used to upload to PyPI, but
while it continues to exist it should not use deprecated functions.
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-35133: Fix mistakes when concatenate string literals on different lines. (GH-10284)</title>
<updated>2018-11-05T14:20:25+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2018-11-05T14:20:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=34fd4c20198dea6ab2fe8dc6d32d744d9bde868d'/>
<id>34fd4c20198dea6ab2fe8dc6d32d744d9bde868d</id>
<content type='text'>
Two kind of mistakes:

1. Missed space. After concatenating there is no space between words.

2. Missed comma. Causes unintentional concatenating in a list of strings.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Two kind of mistakes:

1. Missed space. After concatenating there is no space between words.

2. Missed comma. Causes unintentional concatenating in a list of strings.
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-34605: Replace "pliant children" with "helpers" (GH-9195)</title>
<updated>2018-09-11T23:40:06+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@redhat.com</email>
</author>
<published>2018-09-11T23:40:06+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=fa7dfae3171914f91d629a64c6e829788b485b06'/>
<id>fa7dfae3171914f91d629a64c6e829788b485b06</id>
<content type='text'>
In distutils.command.install, replace "pliant children" (previously,
it was "pliant slaves") with "helpers".

&lt;!-- issue-number: [bpo-34605](https://www.bugs.python.org/issue34605) --&gt;
https://bugs.python.org/issue34605
&lt;!-- /issue-number --&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In distutils.command.install, replace "pliant children" (previously,
it was "pliant slaves") with "helpers".

&lt;!-- issue-number: [bpo-34605](https://www.bugs.python.org/issue34605) --&gt;
https://bugs.python.org/issue34605
&lt;!-- /issue-number --&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-34605: childs =&gt; children (GH-9102)</title>
<updated>2018-09-07T16:13:10+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@redhat.com</email>
</author>
<published>2018-09-07T16:13:10+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=7e610bcdf128f61b925654e4fa80fbac83537d0e'/>
<id>7e610bcdf128f61b925654e4fa80fbac83537d0e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-34605: Avoid master/slave terms (GH-9101)</title>
<updated>2018-09-07T15:30:33+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@redhat.com</email>
</author>
<published>2018-09-07T15:30:33+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=5e922658fb55734bf8b4c6246033ea93af172ff7'/>
<id>5e922658fb55734bf8b4c6246033ea93af172ff7</id>
<content type='text'>
* Replace "master process" with "parent process"
* Replace "master option mappings" with "main option mappings"
* Replace "master pattern object" with "main pattern object"
* ssl: replace "master" with "server"
* And some other similar changes</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Replace "master process" with "parent process"
* Replace "master option mappings" with "main option mappings"
* Replace "master pattern object" with "main pattern object"
* ssl: replace "master" with "server"
* And some other similar changes</pre>
</div>
</content>
</entry>
<entry>
<title>Improve error message for "setup.py upload" without dist files (#21060)</title>
<updated>2018-02-18T23:14:54+00:00</updated>
<author>
<name>Éric Araujo</name>
<email>merwok@netwok.org</email>
</author>
<published>2018-02-18T23:14:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=08a6926b2584040fe3c3f06263b0b5f1fbbdc24c'/>
<id>08a6926b2584040fe3c3f06263b0b5f1fbbdc24c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
