diff options
author | Larry Hastings <larry@hastings.org> | 2017-07-25 09:05:42 (GMT) |
---|---|---|
committer | Larry Hastings <larry@hastings.org> | 2017-07-25 09:05:42 (GMT) |
commit | a6284785da89b4af0664f4f76b7ea43b8f7abb74 (patch) | |
tree | cb1f526827ee81bb63df21eaa0dbca787a46784e | |
parent | 385b3686ff87da838af03b219540d704335f2bc6 (diff) | |
parent | 157b6ad677b7b330d30b2bb5ffbb2edac77b78cb (diff) | |
download | cpython-a6284785da89b4af0664f4f76b7ea43b8f7abb74.zip cpython-a6284785da89b4af0664f4f76b7ea43b8f7abb74.tar.gz cpython-a6284785da89b4af0664f4f76b7ea43b8f7abb74.tar.bz2 |
Merge main 3.5 branch into 3.5.4rc1.
-rw-r--r-- | Lib/test/test_os.py | 1 | ||||
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 15 | ||||
-rw-r--r-- | Mac/BuildScript/openssl_sdk_makedepend.patch | 2 |
3 files changed, 9 insertions, 9 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 8ad6d8e..bb5d2e3 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -2443,6 +2443,7 @@ class TestSendfile(unittest.TestCase): self.client.close() if self.server.running: self.server.stop() + self.server = None def sendfile_wrapper(self, sock, file, offset, nbytes, headers=[], trailers=[]): """A higher level wrapper representing how an application is diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index c61ad9b..518eeb9 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -13,7 +13,7 @@ sphinx-build and the current versions of Sphinx now require at least Python 2.6. In addition to what is supplied with OS X 10.5+ and Xcode 3+, the script -requires an installed version of hg and a third-party version of +requires an installed third-party version of Tcl/Tk 8.4 (for OS X 10.4 and 10.5 deployment targets) or Tcl/TK 8.5 (for 10.6 or later) installed in /Library/Frameworks. When installed, the Python built by this script will attempt to dynamically link first to @@ -23,7 +23,7 @@ installing the most recent ActiveTcl 8.4 or 8.5 version. 32-bit-only installer builds are still possible on OS X 10.4 with Xcode 2.5 and the installation of additional components, such as a newer Python -(2.5 is needed for Python parser updates), hg, and for the documentation +(2.5 is needed for Python parser updates) and for the documentation build either svn (pre-3.4.1) or sphinx-build (3.4.1 and later). Usage: see USAGE variable in the script. @@ -242,9 +242,9 @@ def library_recipes(): result.extend([ dict( - name="OpenSSL 1.0.2j", - url="https://www.openssl.org/source/openssl-1.0.2j.tar.gz", - checksum='96322138f0b69e61b7212bc53d5e912b', + name="OpenSSL 1.0.2k", + url="https://www.openssl.org/source/openssl-1.0.2k.tar.gz", + checksum='f965fc0bf01bf882b31314b61391ae65', patches=[ "openssl_sdk_makedepend.patch", ], @@ -663,9 +663,8 @@ def checkEnvironment(): base_path = base_path + ':' + OLD_DEVELOPER_TOOLS os.environ['PATH'] = base_path print("Setting default PATH: %s"%(os.environ['PATH'])) - # Ensure ws have access to hg and to sphinx-build. - # You may have to create links in /usr/bin for them. - runCommand('hg --version') + # Ensure we have access to sphinx-build. + # You may have to create a link in /usr/bin for it. runCommand('sphinx-build --version') def parseOptions(args=None): diff --git a/Mac/BuildScript/openssl_sdk_makedepend.patch b/Mac/BuildScript/openssl_sdk_makedepend.patch index e22d67e..0caac0a 100644 --- a/Mac/BuildScript/openssl_sdk_makedepend.patch +++ b/Mac/BuildScript/openssl_sdk_makedepend.patch @@ -1,6 +1,6 @@ # HG changeset patch # -# using openssl 1.0.2j +# using openssl 1.0.2k # # - support building with an OS X SDK |