mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-19 18:09:47 +01:00
d516cf83ed
Since Python 3.9, type hinting has become a little less awkward, as for collection types one doesn't need to import the corresponding capitalized types (`Dict`, `List`, `Set`, `Tuple`, ...) anymore, but can use the built-in types directly. [1] [2] This commit applies the replacement for all Python scripts (i.e. in the contrib and test folders) for the basic types: - typing.Dict -> dict - typing.List -> list - typing.Set -> set - typing.Tuple -> tuple [1] https://docs.python.org/3.9/whatsnew/3.9.html#type-hinting-generics-in-standard-collections [2] https://peps.python.org/pep-0585/#implementation for a list of type
22 lines
625 B
Python
Executable File
22 lines
625 B
Python
Executable File
#!/usr/bin/env python3
|
|
# Copyright (c) 2021 The Bitcoin Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
'''
|
|
Common utility functions
|
|
'''
|
|
import shutil
|
|
import sys
|
|
import os
|
|
|
|
|
|
def determine_wellknown_cmd(envvar, progname) -> list[str]:
|
|
maybe_env = os.getenv(envvar)
|
|
maybe_which = shutil.which(progname)
|
|
if maybe_env:
|
|
return maybe_env.split(' ') # Well-known vars are often meant to be word-split
|
|
elif maybe_which:
|
|
return [ maybe_which ]
|
|
else:
|
|
sys.exit(f"{progname} not found")
|