1
0
mirror of https://github.com/bitcoinbook/bitcoinbook synced 2024-11-22 08:08:11 +00:00

from __future__ import print_function

Support print('xyz', end='') on Python 2
This commit is contained in:
cclauss 2017-07-23 10:21:30 +02:00 committed by GitHub
parent 2804ba9630
commit f396920189

View File

@ -1,5 +1,7 @@
#!/usr/bin/env python #!/usr/bin/env python
from __future__ import print_function
from pycoin.key import Key from pycoin.key import Key
from pycoin.key.validate import is_address_valid, is_wif_valid from pycoin.key.validate import is_address_valid, is_wif_valid