mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 12:02:48 +01:00
Change help_text in bitcoin-util-test.py to a docstring.
This commit is contained in:
parent
ce58e93ec0
commit
e9265df15b
@ -3,23 +3,23 @@
|
|||||||
# Copyright 2016 The Bitcoin Core developers
|
# Copyright 2016 The Bitcoin Core developers
|
||||||
# Distributed under the MIT software license, see the accompanying
|
# Distributed under the MIT software license, see the accompanying
|
||||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
import os
|
"""Test framework for bitcoin utils.
|
||||||
import sys
|
|
||||||
import argparse
|
|
||||||
import logging
|
|
||||||
|
|
||||||
help_text="""Test framework for bitcoin utils.
|
|
||||||
|
|
||||||
Runs automatically during `make check`.
|
Runs automatically during `make check`.
|
||||||
|
|
||||||
Can also be run manually."""
|
Can also be run manually."""
|
||||||
|
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
import argparse
|
||||||
|
import logging
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
|
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
|
||||||
import buildenv
|
import buildenv
|
||||||
import bctest
|
import bctest
|
||||||
|
|
||||||
parser = argparse.ArgumentParser(description=help_text)
|
parser = argparse.ArgumentParser(description=__doc__)
|
||||||
parser.add_argument('-v', '--verbose', action='store_true')
|
parser.add_argument('-v', '--verbose', action='store_true')
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
verbose = args.verbose
|
verbose = args.verbose
|
||||||
|
Loading…
Reference in New Issue
Block a user