summaryrefslogtreecommitdiffstats
path: root/Modules/FindCURL.cmake
Commit message (Collapse)AuthorAgeFilesLines
* ENH: add second failure message parameter toAlexander Neundorf2007-07-231-1/+1
| | | | | | | | FIND_PACKAGE_HANDLE_STANDARD_ARGS(), so cmake modules can specify their own better failure messages. If the default is ok use "DEFAULT_MSG". Do this also for FindBoost.cmake (#5349) Alex
* ENH: use the new FIND_PACKAGE_HANDLE_STANDARD_ARGS() macro in most of theAlexander Neundorf2007-07-191-22/+7
| | | | | | | not-too-complicated modules -remove unnecessary default search paths used in the FIND_XXX() calls Alex
* BUG: honor REQUIRED and QUIETLY (#5312)Alexander Neundorf2007-07-121-9/+13
| | | | Alex
* ENH: Find module for CURL library.Brad King2006-10-191-0/+38
over'>| * bpo-37173: Show passed class in inspect.getfile error (GH-13861)Philipp A2019-06-083-3/+22 | | | | | | | | | | | | | Currently, inspect.getfile(str) will report nonsense: ```pytb >>> inspect.getfile(str) TypeError: <module 'builtins' (built-in)> is a built-in class ``` This fixes that https://bugs.python.org/issue37173 * cross port importlib-metadata PR #76 (#13903)Anthony Sottile2019-06-074-0/+4 | | | https://gitlab.com/python-devs/importlib_metadata/merge_requests/76 * bpo-37150: Throw ValueError if FileType class object was passed in ↵zygocephalus2019-06-073-0/+23 | | | | | | | | | | | | | | add_argument (GH-13805) There is a possibility that someone (like me) accidentally will omit parentheses with `FileType` arguments after `FileType`, and parser will contain wrong file until someone will try to use it. Example: ```python parser = argparse.ArgumentParser() parser.add_argument('-x', type=argparse.FileType) ``` https://bugs.python.org/issue37150 * bpo-37138: fix undefined behaviour with memcpy() on NULL array (GH-13867)Jeroen Demeyer2019-06-071-1/+5 | * bpo-37181: Fix test_regrtest failures on Windows arm64 (GH-13872)Paul Monson2019-06-07