summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2003-02-19 22:37:07 (GMT)
committerBrad King <brad.king@kitware.com>2003-02-19 22:37:07 (GMT)
commit634dedcd5197050b04455091b610a38791fe02e4 (patch)
tree79b855f6f9352963cb5c131d3ab27610ce131a10 /Source
parente698c9c620991cb2421b60bed5ff39c7e1bbe7a7 (diff)
downloadCMake-634dedcd5197050b04455091b610a38791fe02e4.zip
CMake-634dedcd5197050b04455091b610a38791fe02e4.tar.gz
CMake-634dedcd5197050b04455091b610a38791fe02e4.tar.bz2
ENH: Using new --all-for-coverage of DumpDocumentation to improve coverage.
Diffstat (limited to 'Source')
-rw-r--r--Source/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CMakeLists.txt b/Source/CMakeLists.txt
index fd9d006..03a4f05 100644
--- a/Source/CMakeLists.txt
+++ b/Source/CMakeLists.txt
@@ -130,7 +130,7 @@ TARGET_LINK_LIBRARIES(cmaketest CMakeLib)
IF(BUILD_TESTING)
ADD_TEST(DumpDocumentation ${CMake_BINARY_DIR}/Source/DumpDocumentation
- ${CMake_BINARY_DIR}/CMakeDoc.html)
+ --all-for-coverage)
ADD_TEST(SystemInformation ${CMake_BINARY_DIR}/Source/cmaketest
${CMake_SOURCE_DIR}/Tests/SystemInformation
s='logsubject'>Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywordsVictor Stinner2017-01-172-4/+4 | | | | | | | | | | | | | | | | Issue #29286. * | | | Add _PyStack_AsTupleSlice() helperVictor Stinner2017-01-161-0/+6 | | | | * | | | Issue #28969: Fixed race condition in C implementation of functools.lru_cache.Serhiy Storchaka2017-01-121-0/+1 |\ \ \ \ | |/ / / | | | | | | | | | | | | KeyError could be raised when cached function with full cache was simultaneously called from differen threads with the same uncached arguments. | * | | Issue #28969: Fixed race condition in C implementation of functools.lru_cache.Serhiy Storchaka2017-01-121-0/+1 | |\ \ \ | | | |/ | | |/| | | | | | | | | KeyError could be raised when cached function with full cache was simultaneously called from differen threads with the same uncached arguments. | | * | Issue #28969: Fixed race condition in C implementation of functools.lru_cache.Serhiy Storchaka2017-01-121-0/+1 | | |/ | | | | | | | | | | | | KeyError could be raised when cached function with full cache was simultaneously called from differen threads with the same uncached arguments. | | * Post-release fixups for Python 3.5.3rc1.Larry Hastings2017-01-031-1/+1 | | | | | * Version bump for 3.5.3rc1.v3.5.3rc1Larry Hastings2017-01-021-4/+4 | | | * | | Disable _PyStack_AsTuple() inliningVictor Stinner2017-01-111-1/+14 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Issue #29234: Inlining _PyStack_AsTuple() into callers increases their stack consumption, Disable inlining to optimize the stack consumption. Add _Py_NO_INLINE: use __attribute__((noinline)) of GCC and Clang. It reduces the stack consumption, bytes per call, before => after: test_python_call: 1040 => 976 (-64 B) test_python_getitem: 976 => 912 (-64 B) test_python_iterator: 1120 => 1056 (-64 B) => total: 3136 => 2944 (- 192 B) * | | call_method() now uses _PyObject_FastCall()Victor Stinner2017-01-101-8/+0 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Issue #29233: Replace the inefficient _PyObject_VaCallFunctionObjArgs() with _PyObject_FastCall() in call_method() and call_maybe(). Only a few functions call call_method() and call it with a fixed number of arguments. Avoid the complex and expensive _PyObject_VaCallFunctionObjArgs() function, replace it with an array allocated on the stack with the exact number of argumlents. It reduces the stack consumption, bytes per call, before => after: test_python_call: 1168 => 1152 (-16 B) test_python_getitem: 1344 => 1008 (-336 B) test_python_iterator: 1568 => 1232 (-336 B) Remove the _PyObject_VaCallFunctionObjArgs() function which became useless. Rename it to object_vacall() and make it private. * | | Merge 3.6Victor Stinner2017-01-051-1/+1 |\ \ \ | |/ / | * | Issue #27961: Define HAVE_LONG_LONG as 1.Victor Stinner2017-01-051-1/+1 | | | | | | | | | | | | | | | Fix backward compatibility issue, HAVE_LONG_LONG was defined but empty, whereas it is defined as 1 in Python 3.5. * | | Issue #28915: Exclude _Py_VaBuildStack from the limited API.Serhiy Storchaka2016-12-271-0/+4 | | | * | | Issue #28427: old keys should not remove new values fromAntoine Pitrou2016-12-271-0/+2 |\ \ \ | |/ / | | | | | | WeakValueDictionary when collecting from another thread. | * | Issue #28427: old keys should not remove new values fromAntoine Pitrou2016-12-271-0/+2 | |\ \ | | |/ | | | | | | WeakValueDictionary when collecting from another thread. | | * Issue #28427: old keys should not remove new values fromAntoine Pitrou2016-12-271-0/+2 | | | | | | | | | | | | WeakValueDictionary when collecting from another thread. * | | Issue #29058: All stable API extensions added after Python 3.2 are nowSerhiy Storchaka2016-12-2718-7/+85 |\ \ \ | |/ / | | | | | | | | | available only when Py_LIMITED_API is set to the PY_VERSION_HEX value of the minimum Python version supporting this API. | * | Issue #29058: All stable API extensions added after Python 3.2 are nowSerhiy Storchaka2016-12-2718-7/+85 | | | | | | | | | | | | | | | available only when Py_LIMITED_API is set to the PY_VERSION_HEX value of the minimum Python version supporting this API. * | | Issue #29049: Call _PyObject_GC_TRACK() lazily when calling Python function.INADA Naoki2016-12-24