Projects STRLCPY btcrecover Commits 65bc23a4
🤬
  • ■ ■ ■ ■ ■ ■
    btcrecover/test/test_passwords.py
    skipped 36 lines
    37 37  # except these from Armory:
    38 38  warnings.filterwarnings("ignore", r"the sha module is deprecated; use the hashlib module instead", DeprecationWarning)
    39 39  warnings.filterwarnings("ignore", r"import \* only allowed at module level", SyntaxWarning)
    40  -# except this from Google protobuf
    41  -warnings.filterwarnings("ignore", r"Not importing directory '.*google': missing __init__.py", ImportWarning)
    42  -# except this from PyWin32
    43  -warnings.filterwarnings("ignore", r"Not importing directory '.*gen_py': missing __init__.py", ImportWarning)
     40 +# except this from Google protobuf, PyWin32, and due to pkg_resources (via PyOpenCL) many others (see #62):
     41 +warnings.filterwarnings("ignore", r"Not importing directory '.*': missing __init__.py", ImportWarning)
    44 42   
    45 43  from btcrecover import btcrpass
    46 44  import os, unittest, cPickle, tempfile, shutil, multiprocessing, gc, filecmp, sys, hashlib
    skipped 1790 lines
Please wait...
Page is in error, reload to recover