summaryrefslogtreecommitdiffstats
path: root/SCons/Action.py
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into topic/grossag/newhashesAdam Gross2020-11-061-27/+27
|\
| * Update some copyright strings and drop __revision__ [skip appveyor]Mats Wichmann2020-09-231-27/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Touches the first and second levels of SCons (except SCons.Tool), not tests or docs which remain TODO. Make sure docstring is first non-comment content, eliminate cases where docstring is set elsewhere but assigns to __doc__ - this approach of course worked inside Python, but confuses various tools. Some module-level docstrings modified a bit, in particular the convention of having the name of the module as the first line is dropped, replaced by a summary description going there instead - this improves the look in the API Docs, which otherwise display something like: SCons.Foo - SCons.Foo Signed-off-by: Mats Wichmann <mats@linux.com>
* | Add support for overriding the default hash formatAdam Gross2020-08-041-1/+1
|/ | | | | | | This change adds support for a new --hash-format parameter that can be used to override the default hash format used by SCons. The default remains MD5, but this allows consumers to opt into SHA1, SHA256, or any other hash algorithm offered by their implementation of hashlib.
* classes no longer explicitly inherit from objectMats Wichmann2020-05-241-15/+22
| | | | | | In Python3 this is the default. Signed-off-by: Mats Wichmann <mats@linux.com>
* Reorganize the repo. Moved src/engine/SCons to ./SCons to be more in line ↵William Deegan2020-05-061-0/+1469
with current python packaging practices