|
Lines 401-406
Link Here
|
| 401 |
fi |
401 |
fi |
| 402 |
} |
402 |
} |
| 403 |
|
403 |
|
|
|
404 |
# @FUNCTION: python_get_use_implementations |
| 405 |
# @DESCRIPTION: |
| 406 |
# Gets an array of python use targets enabled by the user |
| 407 |
python_get_use_implementations() { |
| 408 |
local i implementation |
| 409 |
for implementation in ${PYTHON_COMPAT[@]}; do |
| 410 |
use python_targets_${implementation} && i+=" ${implementation}" |
| 411 |
done |
| 412 |
echo $i |
| 413 |
} |
| 414 |
|
| 404 |
# @FUNCTION: python_foreach_impl |
415 |
# @FUNCTION: python_foreach_impl |
| 405 |
# @USAGE: <command> [<args>...] |
416 |
# @USAGE: <command> [<args>...] |
| 406 |
# @DESCRIPTION: |
417 |
# @DESCRIPTION: |