List of commits:
Subject Hash Author Date (UTC)
bpo-29643: Fix check for --enable-optimizations (GH-129) 8cea5929f52801b0ce5928b46ef836e99a24321a Alex Wang 2017-03-28 12:50:51
Drop the standard gcc test build on Travis (GH-853) ad2f9e2c8a0b44b3e6aec9d28ba59e13239236f7 Brett Cannon 2017-03-27 23:39:54
Fix ref cycles in TestCase.assertRaises() (#193) bbd3cf8f1ef1e91a8d6dac6411e18b4b9084abf5 Victor Stinner 2017-03-27 22:56:28
bpo-29677: DOC: clarify documentation for `round` (#357) 6003db7db5fec545c01923c198a5fdfca5a91538 Gerrit Holl 2017-03-27 22:15:20
bpo-29924: Remove useless argument (#854) d67a103702cf57de90a62c90f7ae969c23d96218 Sylvain 2017-03-27 21:36:08
bpo-29912: Remove redundant tests in list_tests that are found in seq_tests (GH-847) d702c50049207d825c1d5925fbc7306514fa9a0a Jim Fasarakis-Hilliard 2017-03-27 19:35:52
bpo-29919: Remove unused imports found by pyflakes (#137) d6debb24e06152a827769b0cac24c47deccdeac1 Victor Stinner 2017-03-27 14:05:26
bpo-20552: Use specific asserts in bytes tests (#790) 604e74c6beb2585c81083fa85f0e5a4d46965cbc Serhiy Storchaka 2017-03-27 10:59:07
Minor test cleanup (GH-837) b8a7daf077dab18e9e3701c5380b542ae0aa9a94 Zachary Ware 2017-03-27 05:08:31
Treat Sphinx warnings as errors (GH-832) 334e9ec938ea9876baadef15edb135d6d2aff30c Zachary Ware 2017-03-27 02:31:31
import sys before we use it on line 9 (#828) 0579e81f30d00da562f021760d5b6a9c35186520 Jelle Zijlstra 2017-03-27 02:17:39
Fixes sphinx warning in "changelog" misc/NEWS (#829) 5fb278fd58688177a113755e1996cd4c9706477c Michael Seifert 2017-03-27 01:25:57
Fix small exception typos in Lib (#818) 1e73dbbc29c96d0739ffef92db36f63aa1aa30da Jim Fasarakis-Hilliard 2017-03-26 20:59:08
bpo-29888: Fix the link referring to the "Python download page" (GH-824) f8beb9831acd5cf80b9c56aea5864e16118c5400 cocoatomo 2017-03-26 17:32:24
bpo-29900: Simplify pathlib implementation. (#814) 62a99515301fa250feba1a2e0f2d8ea2a29d700e Serhiy Storchaka 2017-03-25 11:42:11
bpo-29901: Improve support of path-like objects in zipapp. (#815) 4aec9a8be2f2574f249008eb8be76c070fea37eb Serhiy Storchaka 2017-03-25 11:05:23
Simplify partial.__new__. (#813) 3c749fc867f69deac75f866d5c1ba0f60e54c1fa Serhiy Storchaka 2017-03-25 10:10:16
bpo-29862: Fix grammar in importlib.reload() exception (GH-809) 9f0aa4843f8c26937d5817f27cac4aae9c0a034f Mandeep Bhutani 2017-03-25 04:51:21
bpo-29892: Fix wrong markup on doc-lib-functions (GH-802) 29540cdf6c66df9f806375a95078c0c63192ef78 NAKAMURA Osamu 2017-03-25 02:55:08
bpo-28810: Document remaining bytecode changes in 3.6 (GH-651) 8f9e1bbf2dbdf46a0bf920279568a31460043376 Ivan Levkivskyi 2017-03-24 21:05:04
Commit 8cea5929f52801b0ce5928b46ef836e99a24321a - bpo-29643: Fix check for --enable-optimizations (GH-129)
The presence of the ``--enable-optimizations`` flag is indicated by the
value of ``$enableval``, but the configure script was checking ``$withval``,
resulting in the ``--enable-optimizations`` flag being effectively ignored.
Author: Alex Wang
Author date (UTC): 2017-03-28 12:50
Committer name: INADA Naoki
Committer date (UTC): 2017-03-28 12:50
Parent(s): ad2f9e2c8a0b44b3e6aec9d28ba59e13239236f7
Signer:
Signing key:
Signing status: N
Tree: 12dd5e34dd3dc16062fadbd6a7a52c8c8910ef44
File Lines added Lines deleted
Misc/NEWS 5 0
configure 1 1
configure.ac 1 1
File Misc/NEWS changed (mode: 100644) (index 260538b740..b41fd8d79f)
... ... Tools/Demos
991 991 - Issue #28102: The zipfile module CLI now prints usage to stderr. - Issue #28102: The zipfile module CLI now prints usage to stderr.
992 992 Patch by Stephen J. Turnbull. Patch by Stephen J. Turnbull.
993 993
994 Build
995 -----
996
997 - bpo-29643: Fix ``--enable-optimization`` didn't work.
998
994 999 Tests Tests
995 1000 ----- -----
996 1001
File configure changed (mode: 100755) (index 26b4a05271..87504d2068)
... ... $as_echo_n "checking for --enable-optimizations... " >&6; }
6521 6521 # Check whether --enable-optimizations was given. # Check whether --enable-optimizations was given.
6522 6522 if test "${enable_optimizations+set}" = set; then : if test "${enable_optimizations+set}" = set; then :
6523 6523 enableval=$enable_optimizations; enableval=$enable_optimizations;
6524 if test "$withval" != no
6524 if test "$enableval" != no
6525 6525 then then
6526 6526 Py_OPT='true' Py_OPT='true'
6527 6527 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
File configure.ac changed (mode: 100644) (index 8ab1c03ed8..f9bd92ce3d)
... ... Py_OPT='false'
1274 1274 AC_MSG_CHECKING(for --enable-optimizations) AC_MSG_CHECKING(for --enable-optimizations)
1275 1275 AC_ARG_ENABLE(optimizations, AS_HELP_STRING([--enable-optimizations], [Enable expensive optimizations (PGO, etc). Disabled by default.]), AC_ARG_ENABLE(optimizations, AS_HELP_STRING([--enable-optimizations], [Enable expensive optimizations (PGO, etc). Disabled by default.]),
1276 1276 [ [
1277 if test "$withval" != no
1277 if test "$enableval" != no
1278 1278 then then
1279 1279 Py_OPT='true' Py_OPT='true'
1280 1280 AC_MSG_RESULT(yes); AC_MSG_RESULT(yes);
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/benf_wspdigital/cpython

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/benf_wspdigital/cpython

Clone this repository using git:
git clone git://git.rocketgit.com/user/benf_wspdigital/cpython

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main