diff options
author | T. Wouters <thomas@python.org> | 2017-05-22 23:30:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-22 23:30:49 (GMT) |
commit | ddbfa2c35b298a56f0b813656745bca9cb7334f1 (patch) | |
tree | 9016b96669e130e30bac6d92cb428f31ea08fa3d /Misc | |
parent | 0c4aca54dcf0c54f299c78aa71fe8f48ff04f9d9 (diff) | |
download | cpython-ddbfa2c35b298a56f0b813656745bca9cb7334f1.zip cpython-ddbfa2c35b298a56f0b813656745bca9cb7334f1.tar.gz cpython-ddbfa2c35b298a56f0b813656745bca9cb7334f1.tar.bz2 |
Add --with-assertions configure flag to enable C assertions(#1731)
Defaults to 'no', but as before assertions are implied by --with-pydebug.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1100,6 +1100,10 @@ Documentation Build ----- +- bpo-29941: Add ``--with-assertions`` configure flag to explicitly enable + C ``assert()`` checks. Defaults to off. ``--with-pydebug`` implies + ``--with-assertions``. + - bpo-28787: Fix out-of-tree builds of Python when configured with ``--with--dtrace``. |