<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git, branch v3.7.0b4</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>3.7.0b4</title>
<updated>2018-05-02T07:41:45+00:00</updated>
<author>
<name>Ned Deily</name>
<email>nad@python.org</email>
</author>
<published>2018-05-02T07:41:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=eb96c376994cb7c6c2e8a4967782d1c0e2a96135'/>
<id>eb96c376994cb7c6c2e8a4967782d1c0e2a96135</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Enable the verbose build for extension modules with GNU make (GH-6659) (#6662)</title>
<updated>2018-05-02T06:57:24+00:00</updated>
<author>
<name>Miss Islington (bot)</name>
<email>31488909+miss-islington@users.noreply.github.com</email>
</author>
<published>2018-05-02T06:57:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=3c5d3f519d092ea845fa6673df1222fdd668430b'/>
<id>3c5d3f519d092ea845fa6673df1222fdd668430b</id>
<content type='text'>
(cherry picked from commit 10f715d71218ece737f990fa55027b8e1120cc3a)

Co-authored-by: Matthias Klose &lt;doko42@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(cherry picked from commit 10f715d71218ece737f990fa55027b8e1120cc3a)

Co-authored-by: Matthias Klose &lt;doko42@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-33393: Update config.guess and config.sub files (GH-6658) (#6661)</title>
<updated>2018-05-02T06:54:51+00:00</updated>
<author>
<name>Miss Islington (bot)</name>
<email>31488909+miss-islington@users.noreply.github.com</email>
</author>
<published>2018-05-02T06:54:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=9da7ee40037fa30d0d28fd8d7c652cde14e5a834'/>
<id>9da7ee40037fa30d0d28fd8d7c652cde14e5a834</id>
<content type='text'>
(cherry picked from commit 7e3545c70cdecd86ffa8fcbffd79b4f78560679f)

Co-authored-by: Matthias Klose &lt;doko42@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(cherry picked from commit 7e3545c70cdecd86ffa8fcbffd79b4f78560679f)

Co-authored-by: Matthias Klose &lt;doko42@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Mitigate macOS race condition in installer build (GH-6686) (GH-6687)</title>
<updated>2018-05-02T05:45:59+00:00</updated>
<author>
<name>Miss Islington (bot)</name>
<email>31488909+miss-islington@users.noreply.github.com</email>
</author>
<published>2018-05-02T05:45:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=50903bf011d8d3841c1874628f9ac20515256872'/>
<id>50903bf011d8d3841c1874628f9ac20515256872</id>
<content type='text'>
(cherry picked from commit fc6aa28bfd0502d994cec30bd3679b7def3be2af)

Co-authored-by: Ned Deily &lt;nad@python.org&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(cherry picked from commit fc6aa28bfd0502d994cec30bd3679b7def3be2af)

Co-authored-by: Ned Deily &lt;nad@python.org&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-33290: Have macOS installer remove "pip" alias (GH-6683) (GH-6684)</title>
<updated>2018-05-02T05:43:59+00:00</updated>
<author>
<name>Miss Islington (bot)</name>
<email>31488909+miss-islington@users.noreply.github.com</email>
</author>
<published>2018-05-02T05:43:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=1470e43076559d22518f2e8d704fa9426d2659dd'/>
<id>1470e43076559d22518f2e8d704fa9426d2659dd</id>
<content type='text'>
Currently, "pip3 install --upgrade pip" unconditionally installs a
"pip" alias even for Python 3.  If a user has an existing Python 3.x
installed from a python.org macOS installer and then subsequently
manually updates to a new version of pip, there may now be a stray
"pip" alias in the Python 3.x framework bin directory which can cause
confusion if the user has both a Python 2.7 and 3.x installed;
if the Python 3.x fw bin directory appears early on $PATH, "pip"
might invoke the pip3 for the Python 3.x rather than the pip for
Python 2.7.  To try to mitigate this, the macOS installer script
for the ensurepip option will unconditionally remove "pip" from
the 3.x framework bin directory being updated / installed.  (The
ambiguity can be avoided by using "pythonx.y -m pip".)
(cherry picked from commit 0dd80709b5dc03756e7f4510761ae60236bb9f6d)

Co-authored-by: Ned Deily &lt;nad@python.org&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently, "pip3 install --upgrade pip" unconditionally installs a
"pip" alias even for Python 3.  If a user has an existing Python 3.x
installed from a python.org macOS installer and then subsequently
manually updates to a new version of pip, there may now be a stray
"pip" alias in the Python 3.x framework bin directory which can cause
confusion if the user has both a Python 2.7 and 3.x installed;
if the Python 3.x fw bin directory appears early on $PATH, "pip"
might invoke the pip3 for the Python 3.x rather than the pip for
Python 2.7.  To try to mitigate this, the macOS installer script
for the ensurepip option will unconditionally remove "pip" from
the 3.x framework bin directory being updated / installed.  (The
ambiguity can be avoided by using "pythonx.y -m pip".)
(cherry picked from commit 0dd80709b5dc03756e7f4510761ae60236bb9f6d)

Co-authored-by: Ned Deily &lt;nad@python.org&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-33281: NEWS and ACK (GH-6681) (GH-6682)</title>
<updated>2018-05-02T02:52:42+00:00</updated>
<author>
<name>Miss Islington (bot)</name>
<email>31488909+miss-islington@users.noreply.github.com</email>
</author>
<published>2018-05-02T02:52:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=d74f35331f176e0679f0614b6cccf0dc0422e31a'/>
<id>d74f35331f176e0679f0614b6cccf0dc0422e31a</id>
<content type='text'>
(cherry picked from commit 69a013ec189f93a0dea97cfdbb3adc348648a666)

Co-authored-by: Ned Deily &lt;nad@python.org&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(cherry picked from commit 69a013ec189f93a0dea97cfdbb3adc348648a666)

Co-authored-by: Ned Deily &lt;nad@python.org&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-33281:  Fix ctypes.util.find_library regression on macOS (GH-6625) (GH-6680)</title>
<updated>2018-05-02T02:51:31+00:00</updated>
<author>
<name>Miss Islington (bot)</name>
<email>31488909+miss-islington@users.noreply.github.com</email>
</author>
<published>2018-05-02T02:51:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=c74ca5396aa7740d4fc90617e6b2315e849fa71f'/>
<id>c74ca5396aa7740d4fc90617e6b2315e849fa71f</id>
<content type='text'>
(cherry picked from commit d06d345f04b3f7e5b318df69b1d179328a64ca9c)

Co-authored-by: Ray Donnelly &lt;mingw.android@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(cherry picked from commit d06d345f04b3f7e5b318df69b1d179328a64ca9c)

Co-authored-by: Ray Donnelly &lt;mingw.android@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-33377: add triplets for mips-r6 and riscv (GH-6655) (GH-6660)</title>
<updated>2018-05-01T14:40:17+00:00</updated>
<author>
<name>Miss Islington (bot)</name>
<email>31488909+miss-islington@users.noreply.github.com</email>
</author>
<published>2018-05-01T14:40:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=0596f319020ad34010cbf98608021080ba2a1d4b'/>
<id>0596f319020ad34010cbf98608021080ba2a1d4b</id>
<content type='text'>
(cherry picked from commit ddbe976964933cb943c6383a776e800cc7e0f47d)

Co-authored-by: Matthias Klose &lt;doko42@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(cherry picked from commit ddbe976964933cb943c6383a776e800cc7e0f47d)

Co-authored-by: Matthias Klose &lt;doko42@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-20104: Improve error handling and fix a reference leak in os.posix_spawn(). (GH-6332)</title>
<updated>2018-05-01T14:18:44+00:00</updated>
<author>
<name>Miss Islington (bot)</name>
<email>31488909+miss-islington@users.noreply.github.com</email>
</author>
<published>2018-05-01T14:18:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=77fa7835da0cb49d30ac5d4c32bf6eb71eae0742'/>
<id>77fa7835da0cb49d30ac5d4c32bf6eb71eae0742</id>
<content type='text'>
(cherry picked from commit ef347535f289baad22c0601e12a36b2dcd155c3a)

Co-authored-by: Serhiy Storchaka &lt;storchaka@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(cherry picked from commit ef347535f289baad22c0601e12a36b2dcd155c3a)

Co-authored-by: Serhiy Storchaka &lt;storchaka@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-31908: Fix output of cover files for trace module command-line tool. (GH-4205)</title>
<updated>2018-05-01T04:06:00+00:00</updated>
<author>
<name>Miss Islington (bot)</name>
<email>31488909+miss-islington@users.noreply.github.com</email>
</author>
<published>2018-05-01T04:06:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=e4eeb6eff12947a55df5eabee36e537cadefbbac'/>
<id>e4eeb6eff12947a55df5eabee36e537cadefbbac</id>
<content type='text'>
Previously emitted cover files only when --missing option was used.
(cherry picked from commit 47ab15470d72367694d7758004067313ae022f0e)

Co-authored-by: Michael Selik &lt;mike@selik.org&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously emitted cover files only when --missing option was used.
(cherry picked from commit 47ab15470d72367694d7758004067313ae022f0e)

Co-authored-by: Michael Selik &lt;mike@selik.org&gt;</pre>
</div>
</content>
</entry>
</feed>
