diff options
author | Ned Deily <nad@python.org> | 2017-03-04 06:05:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-04 06:05:06 (GMT) |
commit | 95c50e5aed9e5683676e18349dd94b11901a66b3 (patch) | |
tree | d0e57a3b64c496f48ba99eb12149b4393b082570 /Misc | |
parent | 793f822068335cff68f25304a915c726f3f3a599 (diff) | |
download | cpython-95c50e5aed9e5683676e18349dd94b11901a66b3.zip cpython-95c50e5aed9e5683676e18349dd94b11901a66b3.tar.gz cpython-95c50e5aed9e5683676e18349dd94b11901a66b3.tar.bz2 |
[3.6] bpo-27593: Get SCM build info from git instead of hg. (#446) (#454)
* bpo-27593: Get SCM build info from git instead of hg. (#446)
sys.version and the platform module python_build(),
python_branch(), and python_revision() functions now use
git information rather than hg when building from a repo.
Based on original patches by Brett Cannon and Steve Dower.
(cherry picked from commit 5c4b0d063aba0a68c325073f5f312a2c9f40d178)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -23,6 +23,8 @@ Core and Builtins - Issue #28598: Support __rmod__ for subclasses of str being called before str.__mod__. Patch by Martijn Pieters. +- bpo-29572: Update Windows build and OS X installers to use OpenSSL 1.0.2k. + - bpo-29607: Fix stack_effect computation for CALL_FUNCTION_EX. Patch by Matthieu Dartiailh. @@ -276,6 +278,10 @@ Tests Build ----- +- bpo-27593: sys.version and the platform module python_build(), + python_branch(), and python_revision() functions now use + git information rather than hg when building from a repo. + - bpo-29572: Update Windows build and OS X installers to use OpenSSL 1.0.2k. - Issue #26851: Set Android compilation and link flags. |