Details
Details
- Reviewers
zturner gkistanova rnk
Diff Detail
Diff Detail
Event Timeline
Comment Actions
lgtm
| zorg/buildbot/builders/SanitizerBuilderWindows.py | ||
|---|---|---|
| 81–84 | IMO this is more Python-y: cmake_args = []
if extra_configure_args:
cmake_args = list(extra_configure_args)I've always felt that using "[:]" to copy a list was confusing. | |
IMO this is more Python-y:
cmake_args = [] if extra_configure_args: cmake_args = list(extra_configure_args)I've always felt that using "[:]" to copy a list was confusing.