<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Mac, 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-34405: Update to OpenSSL 1.1.0i for macOS installer builds (GH-9166)</title>
<updated>2018-09-11T15:52:40+00:00</updated>
<author>
<name>Ned Deily</name>
<email>nad@python.org</email>
</author>
<published>2018-09-11T15:52:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=3102e24d83315eee42a94c460956fbcb92ac510f'/>
<id>3102e24d83315eee42a94c460956fbcb92ac510f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update macOS installer Welcome and ReadMe files for 3.7.0. (GH-7653)</title>
<updated>2018-06-12T02:38:03+00:00</updated>
<author>
<name>Ned Deily</name>
<email>nad@python.org</email>
</author>
<published>2018-06-12T02:38:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=378edcd0006ce61f9255e7aeaa8755441225a380'/>
<id>378edcd0006ce61f9255e7aeaa8755441225a380</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>pypi.python.org -&gt; pypi.org (GH-7613)</title>
<updated>2018-06-11T04:45:50+00:00</updated>
<author>
<name>Ned Deily</name>
<email>nad@python.org</email>
</author>
<published>2018-06-11T04:45:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=9d6d06e8065d45f375f4a80e2d7e13b032da1f5b'/>
<id>9d6d06e8065d45f375f4a80e2d7e13b032da1f5b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update Python Folder.icns icon file to match new macOS look (GH-1780)</title>
<updated>2018-05-17T09:14:30+00:00</updated>
<author>
<name>Thomas Jones</name>
<email>thomas@tomtecsolutions.com</email>
</author>
<published>2018-05-17T09:14:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=74fc9c0c09ba72de39f9b71a61ac8506304b6266'/>
<id>74fc9c0c09ba72de39f9b71a61ac8506304b6266</id>
<content type='text'>
Patch by Thomas Jones.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Patch by Thomas Jones.</pre>
</div>
</content>
</entry>
<entry>
<title>Mitigate macOS race condition in installer build (GH-6686)</title>
<updated>2018-05-02T05:41:15+00:00</updated>
<author>
<name>Ned Deily</name>
<email>nad@python.org</email>
</author>
<published>2018-05-02T05:41:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=fc6aa28bfd0502d994cec30bd3679b7def3be2af'/>
<id>fc6aa28bfd0502d994cec30bd3679b7def3be2af</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-33290: Have macOS installer remove "pip" alias (GH-6683)</title>
<updated>2018-05-02T05:30:33+00:00</updated>
<author>
<name>Ned Deily</name>
<email>nad@python.org</email>
</author>
<published>2018-05-02T05:30:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=0dd80709b5dc03756e7f4510761ae60236bb9f6d'/>
<id>0dd80709b5dc03756e7f4510761ae60236bb9f6d</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".)</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".)</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-25427: Remove pyvenv (GH-5962)</title>
<updated>2018-04-20T21:15:40+00:00</updated>
<author>
<name>Brett Cannon</name>
<email>brettcannon@users.noreply.github.com</email>
</author>
<published>2018-04-20T21:15:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=a8c342465b977115b88a4f130833a2fd4c4e7356'/>
<id>a8c342465b977115b88a4f130833a2fd4c4e7356</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-33184: Update macOS installer build to use OpenSSL 1.1.0h. (GH-6407)</title>
<updated>2018-04-07T06:36:02+00:00</updated>
<author>
<name>Ned Deily</name>
<email>nad@python.org</email>
</author>
<published>2018-04-07T06:36:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=b405752dab95fa5dc65a19d94e798844d0378c61'/>
<id>b405752dab95fa5dc65a19d94e798844d0378c61</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-32726: macOS 10.6+ installer now builds Tcl/TK 8.6 (GH-6307)</title>
<updated>2018-03-29T12:47:27+00:00</updated>
<author>
<name>Ned Deily</name>
<email>nad@python.org</email>
</author>
<published>2018-03-29T12:47:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=b9e7fe38a07a16942cb65cb922c234c95e2823a0'/>
<id>b9e7fe38a07a16942cb65cb922c234c95e2823a0</id>
<content type='text'>
Build and link with private copy of Tcl/Tk 8.6 for the macOS 10.6+
installer. The 10.9+ installer variant already does this.  This means that
the Python 3.7 provided by the python.org macOS installers no longer need or
use any external versions of Tcl/Tk, either system-provided or user-
installed, such as ActiveTcl.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Build and link with private copy of Tcl/Tk 8.6 for the macOS 10.6+
installer. The 10.9+ installer variant already does this.  This means that
the Python 3.7 provided by the python.org macOS installers no longer need or
use any external versions of Tcl/Tk, either system-provided or user-
installed, such as ActiveTcl.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-32726: Do not force IDLE.app to launch in 32-bit mode. (GH-6279)</title>
<updated>2018-03-28T07:44:48+00:00</updated>
<author>
<name>Ned Deily</name>
<email>nad@python.org</email>
</author>
<published>2018-03-28T07:44:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=df532ab752680f6e359672c2cd40bec8ac848628'/>
<id>df532ab752680f6e359672c2cd40bec8ac848628</id>
<content type='text'>
Forcing the macOS IDLE.app gui process to launch in 32-mode was
a necessary hack for old versions of Tk (Aqua Carbon as in Tk 8.4
and early versions of 8.5); it is not needed for current versions
of Tk.  Since 32-bit launching will no longer be supported on
future releases of macOS, allow IDLE.app to launch in 64-bit mode.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Forcing the macOS IDLE.app gui process to launch in 32-mode was
a necessary hack for old versions of Tk (Aqua Carbon as in Tk 8.4
and early versions of 8.5); it is not needed for current versions
of Tk.  Since 32-bit launching will no longer be supported on
future releases of macOS, allow IDLE.app to launch in 64-bit mode.</pre>
</div>
</content>
</entry>
</feed>
