https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
e5f6aba Version bump for 3.5.9 final. 01 November 2019, 23:02:34 UTC
9f9afc1 Blurb release and pydoc topics for 3.5.9 final. 01 November 2019, 23:01:12 UTC
58ae08d Post release updates for 3.5.8 final. 29 October 2019, 06:42:44 UTC
ac39a51 Version bump for 3.5.8 final. 29 October 2019, 06:08:24 UTC
efb6611 Blurb release and pydoc topics for 3.5.8 final. 29 October 2019, 06:07:34 UTC
d7b336f [3.5] bpo-31026: Fix test_dbm if dbm.ndbm is build with Berkeley DB. (GH-6632) (cherry picked from commit 70af06cdc4e8fbee0b9d7d46bdc193097d4bc71f) 29 October 2019, 05:56:33 UTC
3fe1b19 bpo-38243, xmlrpc.server: Escape the server_title (GH-16373) (GH-16441) (#16516) Escape the server title of xmlrpc.server.DocXMLRPCServer when rendering the document page as HTML. (cherry picked from commit e8650a4f8c7fb76f570d4ca9c1fbe44e91c8dfaa) 29 October 2019, 05:40:15 UTC
2a6ce8a Post-release update for 3.5.8rc2. 12 October 2019, 11:50:04 UTC
ac4f751 Version bump for 3.5.8rc2. 12 October 2019, 11:10:33 UTC
280a0f5 Fix docs, blurb release, pydoc-topics for 3.5.8rc2. 12 October 2019, 11:07:42 UTC
c386c8b closes bpo-38174: Update vendored expat library to 2.2.8. (GH-16346) (#16434) Fixes CVE-2019-15903. See full changelog at https://github.com/libexpat/libexpat/blob/R_2_2_8/expat/Changes. 09 October 2019, 05:34:26 UTC
2784e78 [3.5] bpo-38216, bpo-36274: Allow subclasses to separately override validation and encoding behavior (GH-16448) (#16475) * [3.5] bpo-38216, bpo-36274: Allow subclasses to separately override validation and encoding behavior (GH-16448) 08 October 2019, 17:36:44 UTC
edd9bc9 [3.7] Doc: Bump sphinx. (GH-10676) (GH-10803) (#16522) (cherry picked from commit 2db96ae7444880d66d4ef65abab8a5e6ff328711) Co-authored-by: Julien Palard <julien@palard.fr> (cherry picked from commit 23a98abd4256f931ed89b65ec6babd4f06dbff97) 08 October 2019, 17:12:21 UTC
4452cdc Sphinx 1.8 is now preferred for building 3.5 docs. 09 September 2019, 13:39:36 UTC
a7b0992 Version bump for 3.5.8rc1. 09 September 2019, 11:18:48 UTC
ee5b1a2 Blurb release and pydoc-topics for 3.5.8rc1. 09 September 2019, 11:16:26 UTC
c28e4a5 [3.5] bpo-37461: Fix infinite loop in parsing of specially crafted email headers (GH-14794) (#15446) * [3.5] bpo-37461: Fix infinite loop in parsing of specially crafted email headers (GH-14794) Some crafted email header would cause the get_parameter method to run in an infinite loop causing a DoS attack surface when parsing those headers. This patch fixes that by making sure the DQUOTE character is handled to prevent going into an infinite loop. (cherry picked from commit a4a994bd3e619cbaff97610a1cee8ffa87c672f5) Co-authored-by: Abhilash Raj <maxking@users.noreply.github.com> Co-Authored-By: Ashwin Ramaswami <aramaswamis@gmail.com> 07 September 2019, 07:08:53 UTC
095373c bpo-36742: Corrects fix to handle decomposition in usernames (GH-13812) (GH-13814) (#14772) (cherry picked from commit 8d0ef0b5edeae52960c7ed05ae8a12388324f87e) Co-authored-by: Steve Dower <steve.dower@python.org> (cherry picked from commit fd1771dbdd28709716bd531580c40ae5ed814468) 07 September 2019, 06:33:24 UTC
4d1c254 bpo-36576: Skip test_ssl and test_asyncio tests failing with OpenSSL 1.1.1 (#12694) Some test_ssl and test_asyncio tests were written for OpenSSL 1.0 and TLS 1.0, but fail with OpenSSL 1.1.1 and TLS 1.3. Fixing these requires backporting new ssl flags like ssl.OP_NO_TLSv1_3 or ssl.OP_NO_COMPRESSION, which is inappropriate at this stage in Python 3.5's lifetime. Moreover, it's not really worth it: the code works fine, the problem is just in the tests. This patch disables those problematic tests when Python 3.5 is built using newer versions of OpenSSL. 07 September 2019, 06:06:27 UTC
063eba2 [3.5] bpo-34155: Dont parse domains containing @ (GH-13079) (#15317) https://bugs.python.org/issue34155 (cherry picked from commit 8cb65d1381b027f0b09ee36bfed7f35bb4dec9a9) Co-authored-by: jpic <jpic@users.noreply.github.com> 07 September 2019, 05:24:05 UTC
afe3a49 bpo-30458: Disallow control chars in http URLs. (GH-12755) (#13207) Disallow control chars in http URLs in urllib.urlopen. This addresses a potential security problem for applications that do not sanity check their URLs where http request headers could be injected. Disable https related urllib tests on a build without ssl (GH-13032) These tests require an SSL enabled build. Skip these tests when python is built without SSL to fix test failures. Use http.client.InvalidURL instead of ValueError as the new error case's exception. (GH-13044) Co-Authored-By: Miro Hrončok <miro@hroncok.cz> 14 July 2019, 09:07:11 UTC
4655d57 bpo-36742: Fixes handling of pre-normalization characters in urlsplit() (GH-13017) (#13042) 14 July 2019, 08:16:19 UTC
4fe82a8 bpo-35907, CVE-2019-9948: urllib rejects local_file:// scheme (GH-13474) (GH-13505) (#13510) CVE-2019-9948: Avoid file reading by disallowing local-file:// and local_file:// URL schemes in URLopener().open() and URLopener().retrieve() of urllib.request. Co-Authored-By: SH <push0ebp@gmail.com> 14 July 2019, 07:04:15 UTC
43a0ae9 Fix compatibility with ISO C89 needed by "gnu89" standard of GCC 4.8: use C89 for loops in backported pickle patch (#12622) 13 July 2019, 22:12:44 UTC
221178a [3.5] bpo-36816: Update the self-signed.pythontest.net cert (GH-13192) (#13200) * [3.5] bpo-36816: Update the self-signed.pythontest.net cert (GH-13192) We updated the server, our testsuite must match. https://bugs.python.org/issue36816 ✈️ CLE -> DEN ✈️ GH-pycon2019 (cherry picked from commit 6bd81734de0b73f1431880d6a75fb71bcbc65fa1) Co-authored-by: Gregory P. Smith <greg@krypto.org> 13 July 2019, 15:35:34 UTC
8486716 [3.5] Doc: Add an optional obsolete header. (GH-13638). (#13658) * [3.5] Doc: Add an optional obsolete header. (GH-13638). (cherry picked from commit 46ed90dd014010703c7a3b2a61c4927644fa8210) Co-authored-by: Julien Palard <julien@palard.fr> 13 July 2019, 14:46:56 UTC
2bb3278 Post-release version bump for 3.5.7. 19 March 2019, 15:19:22 UTC
1917d9b Version bump for 3.5.7 final. 17 March 2019, 23:47:59 UTC
6c4214d Blurb release and pydoc-topics for 3.5.7 final. 17 March 2019, 23:39:54 UTC
4749f1b [3.5] bpo-35121: prefix dot in domain for proper subdomain validation (GH-10258) (#12281) Don't send cookies of domain A without Domain attribute to domain B when domain A is a suffix match of domain B while using a cookiejar with `http.cookiejar.DefaultCookiePolicy` policy. Patch by Karthikeyan Singaravelan. (cherry picked from commit ca7fe5063593958e5efdf90f068582837f07bd14) Co-authored-by: Xtreak <tir.karthi@gmail.com> 17 March 2019, 00:03:39 UTC
382981b bpo-35647: Fix path check in cookiejar (#11436) (#12277) * Refactor cookie path check as per RFC 6265 * Add tests for prefix match of path * Add news entry * Fix set_ok_path and refactor tests * Use slice for last letter (cherry picked from commit 0e1f1f01058bd4a9b98cfe443214adecc019a38c) 16 March 2019, 23:42:11 UTC
c0d9511 bpo-36216: Add check for characters in netloc that normalize to separators (GH-12201) (#12223) 11 March 2019, 04:59:24 UTC
6b0d50d Post-release verison bump for 3.5.7rc1. 04 March 2019, 09:36:14 UTC
d571dd3 Version bump & copyright year update for 3.5.7rc1. 04 March 2019, 02:09:45 UTC
485fa7e PyDoc and blurb updates for 3.5.7rc1. 04 March 2019, 02:00:25 UTC
8ec1fd1 [3.5] bpo-33329: Fix multiprocessing regression on newer glibcs (GH-6575) (#12144) Starting with glibc 2.27.9000-xxx, sigaddset() can return EINVAL for some reserved signal numbers between 1 and NSIG. The `range(1, NSIG)` idiom is commonly used to select all signals for blocking with `pthread_sigmask`. So we ignore the sigaddset() return value until we expose sigfillset() to provide a better idiom. (cherry picked from commit 25038ec) Co-authored-by: Antoine Pitrou <pitrou@free.fr> 04 March 2019, 00:00:49 UTC
56f8783 [3.5] bpo-33127: Compatibility patch for LibreSSL 2.7.0 (GH-6210) (#10994) * bpo-33127: Compatibility patch for LibreSSL 2.7.0 (GH-6210) LibreSSL 2.7 introduced OpenSSL 1.1.0 API. The ssl module now detects LibreSSL 2.7 and only provides API shims for OpenSSL < 1.1.0 and LibreSSL < 2.7. Documentation updates and fixes for failing tests will be provided in another patch set. Signed-off-by: Christian Heimes <christian@python.org> 01 March 2019, 07:36:00 UTC
7cd08cf bpo-34791: xml package obeys ignore env flags (GH-9544) (#11871) The xml.sax and xml.dom.domreg modules now obey sys.flags.ignore_environment. Signed-off-by: Christian Heimes <christian@python.org> (cherry picked from commit 223e501fb9c2b6ae21b96054e20c4c31d94a5d96) 26 February 2019, 01:47:47 UTC
ef33dd6 closes bpo-34656: Avoid relying on signed overflow in _pickle memos. (GH-9261) (#11869) (cherry picked from commit a4ae828ee416a66d8c7bf5ee71d653c2cc6a26dd) 26 February 2019, 00:42:39 UTC
efec763 bpo-35746: Fix segfault in ssl's cert parser (GH-11569) (#11867) Fix a NULL pointer deref in ssl module. The cert parser did not handle CRL distribution points with empty DP or URI correctly. A malicious or buggy certificate can result into segfault. Vulnerability (TALOS-2018-0758) reported by Colin Read and Nicolas Edet of Cisco. Signed-off-by: Christian Heimes <christian@python.org> (cherry picked from commit a37f52436f9aa4b9292878b72f3ff1480e2606c3) 26 February 2019, 00:17:02 UTC
8bcbc78 bpo-35411: Skip test_urllib2net FTP tests on Travis CI (GH-10907) (#11874) On Travis CI, FTP tests of test_urllib2net randomly fail with "425 Security: Bad IP connecting". (cherry picked from commit c11b3b19a5b022c6c229043d37f9a9fd06f22500) 25 February 2019, 23:16:36 UTC
41b48e7 [3.5] bpo-34623: Use XML_SetHashSalt in _elementtree (#9933) * bpo-34623: Use XML_SetHashSalt in _elementtree (GH-9146) The C accelerated _elementtree module now initializes hash randomization salt from _Py_HashSecret instead of libexpat's default CPRNG. Signed-off-by: Christian Heimes <christian@python.org> https://bugs.python.org/issue34623 (cherry picked from commit cb5778f00ce48631c7140f33ba242496aaf7102b) Co-authored-by: Christian Heimes <christian@python.org> 25 February 2019, 21:04:09 UTC
1a2b52b Post-release version bump for 3.5.6. 02 August 2018, 13:51:56 UTC
627d0c6 Version bump for 3.5.6 final. 02 August 2018, 09:19:12 UTC
b86a50f Add Blurb entry for 3.5.6 final. 02 August 2018, 09:16:53 UTC
f497e74 Post-release version bump for 3.5.6rc1. 20 July 2018, 02:31:49 UTC
7df16b1 Version bump for 3.5.6rc1. 20 July 2018, 00:57:25 UTC
95c6597 PyDoc topics refresh & blurb release for 3.5.6rc1. 20 July 2018, 00:55:28 UTC
76aa2c0 bpo-33216: Clarify the documentation for CALL_FUNCTION_* (#8338) Clarify the documentation for the CALL_FUNCTION_* bytecodes. They changed in 3.5 in subtle ways and the documentation has never been correct, much less clear. 19 July 2018, 23:35:28 UTC
1b141b9 Doc: Backport language switcher (bpo-33700, bpo-31045) (#8048) 02 July 2018, 19:56:28 UTC
13402fc Backport 3.7.0 final changes 27 June 2018, 22:49:31 UTC
f381cfe [3.5] bpo-33001: Prevent buffer overrun in os.symlink (GH-5989) (#5991) * bpo-33001: Minimal fix to prevent buffer overrun in os.symlink * Remove invalid test 14 May 2018, 18:03:17 UTC
937ac1f [3.5] bpo-32981: Fix catastrophic backtracking vulns (GH-5955) (#6034) * Prevent low-grade poplib REDOS (CVE-2018-1060) The regex to test a mail server's timestamp is susceptible to catastrophic backtracking on long evil responses from the server. Happily, the maximum length of malicious inputs is 2K thanks to a limit introduced in the fix for CVE-2013-1752. A 2KB evil response from the mail server would result in small slowdowns (milliseconds vs. microseconds) accumulated over many apop calls. This is a potential DOS vector via accumulated slowdowns. Replace it with a similar non-vulnerable regex. The new regex is RFC compliant. The old regex was non-compliant in edge cases. * Prevent difflib REDOS (CVE-2018-1061) The default regex for IS_LINE_JUNK is susceptible to catastrophic backtracking. This is a potential DOS vector. Replace it with an equivalent non-vulnerable regex. Also introduce unit and REDOS tests for difflib. Co-authored-by: Tim Peters <tim.peters@gmail.com> Co-authored-by: Christian Heimes <christian@python.org>. (cherry picked from commit 0e6c8ee2358a2e23117501826c008842acb835ac) 11 March 2018, 18:29:05 UTC
6fb30f4 Post-release bump for Python 3.5.5. 05 February 2018, 00:38:21 UTC
27657e7 Version bump for 3.5.5. 04 February 2018, 23:40:56 UTC
8201a1e Finalize blurb archive for 3.5.5 (no new blurbs). 04 February 2018, 23:39:04 UTC
50b75d0 Merge branch '3.5' of github.com:python/cpython into 3.5 04 February 2018, 16:28:44 UTC
2d80514 Post-release version bump for 3.5.5rc1. 04 February 2018, 16:17:48 UTC
2fc65c6 Update docs template for 3.8 01 February 2018, 03:11:02 UTC
bc7a130 Whoops, missed checking in version bump. 23 January 2018, 13:49:45 UTC
2740fcc Bump version and copyright year for 3.5.5rc1. 23 January 2018, 12:35:33 UTC
604fb62 blurb release and pydoc topics for 3.5.5rc1. 23 January 2018, 12:25:28 UTC
43f014d [3.5] bpo-32072: Fix issues with binary plists. (GH-4455) (#4656) * [3.5] bpo-32072: Fix issues with binary plists. (GH-4455) * Fixed saving bytearrays. * Identical objects will be saved only once. * Equal references will be load as identical objects. * Added support for saving and loading recursive data structures. (cherry picked from commit a897aee) * Fix implementation dependent assertion in test_plistlib. (#4813) It is failed with an advanced optimizer. 23 January 2018, 11:21:21 UTC
891c91d [3.5] bpo-32551: Consistently configure sys.path[0] (#5197) Directory and zipfile execution previously added the parent directory of the directory or zipfile as sys.path[0] and then subsequently overwrote it with the directory or zipfile itself. This caused problems in isolated mode, as it overwrote the "stdlib as a zip archive" entry in sys.path, as the parent directory was never added. The attempted fix to that issue in bpo-29319 created the opposite problem in *non*-isolated mode, by potentially leaving the parent directory on sys.path instead of overwriting it. This change fixes the root cause of the problem by removing the whole "add-and-overwrite" dance for sys.path[0], and instead simply never adds the parent directory to sys.path in the first place. (cherry picked from commit d2977a3ae2cc6802921b1e3b6e9d13fcfbda872d) 23 January 2018, 10:48:11 UTC
57fa0ab [3.5] bpo-32563: Get expat to compile under C89 (#5201) * [3.5] bpo-32563: Get expat to compile under C89 expat: Add artificial scopes in xmltok.c utf8_toUtf8() to fix c89 compilation. Cherry-picked from libexpat commit e0b290eb3d8f4c4b45137a7d7f4f8db812145bd2 * Backport XML RPC test skip to 3.5 The buildbot service upgrade removed the XML-RPC interface, so this test no longer works (through no fault of the standard library). * Don't configure a nonexistent Python 23 January 2018, 10:24:39 UTC
4a4c274 [3.5] bpo-32620: Remove failing pyenv call from CI config (#5274) * [3.5] Remove failing pyenv call from CI config * Backport XML RPC test skip to 3.5 The buildbot service upgrade removed the XML-RPC interface, so this test no longer works (through no fault of the standard library). 23 January 2018, 09:10:43 UTC
fd8614c bpo-30657: Fix CVE-2017-1000158 (#4664) Fixes possible integer overflow in PyBytes_DecodeEscape. Co-Authored-By: Jay Bosamiya <jaybosamiya@gmail.com> 08 December 2017, 21:34:12 UTC
dcb101e Exclude VENVDIR in Doc builds (#3977) 12 October 2017, 20:39:51 UTC
0a8ff1b Remove retired and security branches from active docs (#3882) 04 October 2017, 03:29:07 UTC
0fcc033 bpo-31095: fix potential crash during GC (GH-2974) (#3196) (cherry picked from commit a6296d34a478b4f697ea9db798146195075d496c) 26 September 2017, 21:24:16 UTC
44c1b62 [3.5] bpo-31170: Fix inclusion of expat in Windows build projects. (#3751) * bpo-31170: Fix inclusion of expat in Windows build projects. * Fixes line endings 26 September 2017, 13:00:28 UTC
f2492bb [3.5][Security] bpo-30947, bpo-31170: Update expat from 2.2.1 to 2.2.4 (#3354) * bpo-30947, bpo-31170: Update expat from 2.2.1 to 2.2.4 * Upgrade libexpat embedded copy from version 2.2.1 to 2.2.3 to get security fixes. * Update libexpat from 2.2.3 to 2.2.4. Fix copying of partial characters for UTF-8 input (libexpat bug 115): https://github.com/libexpat/libexpat/issues/115 * Define XML_POOR_ENTROPY when compiling expat 25 September 2017, 00:58:32 UTC
70c630a bpo-31568, Travis CI: Fix python3.5 (#3737) Works around Travis CI bug about the python3.5 binary: https://github.com/travis-ci/travis-ci/issues/8363 24 September 2017, 22:45:00 UTC
0d68d6d [3.5] Fix broken `Show Source` links on documentation pages (GH-3113) (#3126) The `Show Source` was broken because of a change made in sphinx 1.5.1 In Sphinx 1.4.9, the sourcename was "index.txt". In Sphinx 1.5.1+, it is now "index.rst.txt". (cherry picked from commit b9ff498793611d1c6a9b99df464812931a1e2d69) 08 September 2017, 18:32:26 UTC
9cc3320 [3.5] bpo-31036: Allow sphinx and blurb to be found automatically (GH-3440) Rather than requiring the path to blurb and/or sphinx-build to be specified to the make rule, enhance the Doc/Makefile to look for each first in a virtual environment created by make venv and, if not found, look on the normal process PATH. This allows the Doc/Makefile to take advantage of an installed spinx-build or blurb and, thus, do the right thing most of the time. Also, make the directory for the venv be configurable and document the `make venv` target. 08 September 2017, 17:42:19 UTC
5da989c Merge 3.5.4 release into main 3.5 branch. 08 August 2017, 11:09:22 UTC
86833a2 Post-release version bump for 3.5.4 final. 08 August 2017, 11:08:20 UTC
3f56838 Version bump for 3.5.4 final. 07 August 2017, 07:59:11 UTC
ff078f4 Blurb release and pydoc topics for 3.5.4 final. 07 August 2017, 07:56:55 UTC
14167c9 bpo-25910: Update LICENSE (GH-2873) (GH-2968) Use the copy provided in https://bugs.python.org/issue25910GH-msg295200 (cherry picked from commit 8474d87165593bac2bc231287f42c4cff3fd6aaf) (cherry picked from commit f6306e737203ac1bf1717bbf62bc58dac24b68db) 07 August 2017, 07:34:16 UTC
b672a45 Fix trivial typo in multiprocessing documentation (GH-2930) (GH-2941) (cherry picked from commit 6fcb69dad579cc9a7dc15eabead43b6c37464f8c) (cherry picked from commit 52c41f18086f3d8b1eb3854b568f04717c724e3d) 07 August 2017, 07:34:16 UTC
abe7b60 [3.5] bpo-31036: use an existing Misc/NEWS rather than trying to use blurb (#2874) * bpo-31036: use an existing Misc/NEWS rather than trying to use blurb * bpo-31036: avoid echoing comments (cherry picked from commit 3de144890ad3bc50694368a1b33be6d7f3a780b3) 07 August 2017, 07:34:16 UTC
27ea3c7 Remove .mention-bot (GH-2923) (GH-2971) (cherry picked from commit e1e60bd95c376f9b18cbaf9481364281c6cc1bc7) 01 August 2017, 04:34:47 UTC
f6306e7 bpo-25910: Update LICENSE (GH-2873) (GH-2968) Use the copy provided in https://bugs.python.org/issue25910GH-msg295200 (cherry picked from commit 8474d87165593bac2bc231287f42c4cff3fd6aaf) 01 August 2017, 02:53:43 UTC
52c41f1 Fix trivial typo in multiprocessing documentation (GH-2930) (GH-2941) (cherry picked from commit 6fcb69dad579cc9a7dc15eabead43b6c37464f8c) 29 July 2017, 02:56:13 UTC
3de1448 [3.5] bpo-31036: use an existing Misc/NEWS rather than trying to use blurb (#2874) * bpo-31036: use an existing Misc/NEWS rather than trying to use blurb * bpo-31036: avoid echoing comments 27 July 2017, 19:50:04 UTC
f9fbed1 [3.5] bpo-30876: Add new import test files to projects. (GH-2851). (#2913) (cherry picked from commit d5ed47dea25e04a3a144eddf99a4ac4a29242dbc) 27 July 2017, 10:16:21 UTC
19b2890 [3.5] [security] bpo-30119: fix ftplib.FTP.putline() to throw an error for a illegal command (#1214) (#2887) 26 July 2017, 07:04:42 UTC
49175b3 [3.5] bpo-31018: Switch to GH-pragma pack from __declspec(align) (GH-2848) (#2869) (cherry picked from commit 39243779f4c97ec6f700fa73c007ca66dfa9408e) 25 July 2017, 17:20:51 UTC
73bff8c Post-release version bump for 3.5.4rc1. 25 July 2017, 09:08:36 UTC
a628478 Merge main 3.5 branch into 3.5.4rc1. 25 July 2017, 09:05:42 UTC
157b6ad bpo-30908: Fix dangling thread in test_os.TestSendfile (#2680) (#2845) tearDown() now clears explicitly the self.server variable to make sure that the thread is completely cleared when tearDownClass() checks if all threads have been cleaned up. Fix the following warning: $ ./python -m test --fail-env-changed -m test.test_os.TestSendfile.test_keywords -R 3:1 test_os (...) Warning -- threading_cleanup() failed to cleanup 0 threads after 3 sec (count: 0, dangling: 2) (...) Tests result: ENV CHANGED (cherry picked from commit d1cc037d1442cc35d1b194ec8e50901514360949) 24 July 2017, 15:40:47 UTC
dbe6aba Backport Mac installer fixes for git-based workflow (#2838) 24 July 2017, 08:58:00 UTC
002f778 bpo-29572: Update macOS installer build to OpenSSL 1.0.2k (#457) (#2835) (cherry picked from commit cfcd76777e35c83d548d8736f5d7dc92fe56d806) 24 July 2017, 07:47:31 UTC
385b368 Version bump & copyright year fixes for 3.5.4rc1. 24 July 2017, 02:40:13 UTC
2363678 Updated pydoc-topics for 3.5.4rc1. 24 July 2017, 02:37:38 UTC
9bf9aa2 Blurb release for 3.5.4rc1. 24 July 2017, 02:19:54 UTC
b902833 Update 3.5 to use blurb! 24 July 2017, 02:18:13 UTC
fcfbeb9 Mac installer build now needs venv for docs build (#2828) (#2833) (cherry picked from commit 4c7532e96da19f2d5543bdab2b972797699c37d5) 23 July 2017, 23:39:49 UTC
8b99e2d Add option to pass vcs info into Mac installer build (#2832) (cherry picked from commit 4da52247d6ae53b8384f9753430e8cd2672ff97d) 23 July 2017, 22:09:14 UTC
back to top