Homebrew / homebrew-core

🍻 Default formulae for the missing package manager for macOS (or Linux)
https://brew.sh
BSD 2-Clause "Simplified" License
13.59k stars 12.34k forks source link

Keep old `sitecustomize.py` on Python Formula update #80567

Closed XuehaiPan closed 3 years ago

XuehaiPan commented 3 years ago

brew gist-logs <formula> link OR brew config AND brew doctor output

$ brew doctor
Please note that these warnings are just used to help the Homebrew maintainers
with debugging if you file an issue. If everything you use Homebrew for is
working fine: please don't worry or file an issue; just ignore this. Thanks!

Warning: Your Homebrew's prefix is not /home/linuxbrew/.linuxbrew.
Some of Homebrew's bottles (binary packages) can only be used with the default
prefix (/home/linuxbrew/.linuxbrew).
You will encounter build failures with some formulae.
Please create pull requests instead of asking for help on Homebrew's GitHub,
Twitter or any other official channels. You are responsible for resolving
any issues you experience while you are running this
unsupported configuration.

What were you trying to do (and why)?

Keep old sitecustomize.py on Python Formula update. I add my custom startup scripts to sitecustomize.py, which will be replaced on Python update every time. I want to keep my sitecustomize configuration. My Python startup script:

# ...
# Contents of brewed sitecustomize.py
# ...

# My startup scripts
try:
    from rich import print
    import rich.pretty
    import rich.traceback
except ImportError:
    pass
else:
    rich.pretty.install()
    rich.traceback.install()

What happened (include all command output)?

The contents of sitecustomize.py will be completely replaced on each time Python installation (brew upgrade / brew reinstall).

https://github.com/Homebrew/homebrew-core/blob/a47a70213925df2d5ccaab46fb09251a138ab5e6/Formula/python%403.9.rb#L287-L290

What did you expect to happen?

Keep my old site configuration. The brewed sitecustomize file could be written into an other file (sitecustomize-homebrew.py, etc.), then import it on the top of sitecustomize.py.

Step-by-step reproduction instructions (by running brew commands)

# 1. Install `python3`:
brew install python@3.9

# 2. Modify the sitecustomize:
echo "# sizecustomize modified" >> "$(brew --prefix)/lib/python3.9/sitecustomize.py"

# 3. Upgrade or reinstall `python3`:
brew update
brew upgrade python@3.9  # or brew reinstall python@3.9
cat "$(brew --prefix)/lib/python3.9/sitecustomize.py"
carlocab commented 3 years ago

Have you tried putting your custom sitecustomize.py in ~/Library/Python/3.9/lib/python/site-packages?

XuehaiPan commented 3 years ago

I have tried the following pathes:

Only the last one on macOS / Linux can work, but it will be replaced on brew upgrade / reinstall.

cho-m commented 3 years ago

In terms of user paths, some things you can try:

  1. Add an arbitrarily named .pth file inside the directory corresponding to python3 -m site --user-site.
  2. Add a sitecustomize.py file into any directory you want and then add that directory to your PYTHONPATH environment variable. Since these directories are added to sys.path, Python should load the sitecustomize.py file from them.

If you don't add anything to PYTHONPATH, then the default directories would be used (as seen by running python3 -c 'import sys; print(sys.path)'). This would include Homebrew's Cellar directory.

You can also try running python3 -vv to see details on what is being loaded.

XuehaiPan commented 3 years ago

I don't set PYTHONPATH in my shell profile. The output of python3 -c 'import sys; print(sys.path)' on Linux:

[
    '',
    '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python39.zip',
    '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9',               # used
    '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload',
    '/home/PanXuehai/.local/lib/python3.9/site-packages',                             # not used (usersite)
    '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages'  # not used
]

and python3 -m site --user-site:

/home/PanXuehai/.local/lib/python3.9/site-packages

The $(brew --prefix)/lib/python3.9/sitecustomize.py will be used on Python startup. python3 -vv reports that the interpreter is trying to load ~/.local/lib/python3.9/site-packages/sitecustomize.py. But actually it is not loaded.

$ cat ~/.local/lib/python3.9/site-packages/sitecustomize.py <<EOF
print('=== sitecustomize test ===')
raise RuntimeError
EOF

$ echo '1 / 0' | python3 -vv -
python -vv output with ~/.local/lib/python3.9/site-packages/sitecustomize.py.
import _frozen_importlib # frozen
import _imp # builtin
import '_thread' # 
import '_warnings' # 
import '_weakref' # 
import '_io' # 
import 'marshal' # 
import 'posix' # 
import '_frozen_importlib_external' # 
# installing zipimport hook
import 'time' # 
import 'zipimport' # 
# installed zipimport hook
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/__pycache__/__init__.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/__init__.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/__pycache__/__init__.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/codecs.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/codecs.abi3.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/codecs.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/codecs.py
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/codecs.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/codecs.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/codecs.cpython-39.pyc'
import '_codecs' # 
import 'codecs' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e86cf6d0>
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/aliases.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/aliases.abi3.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/aliases.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/aliases.py
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/__pycache__/aliases.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/aliases.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/__pycache__/aliases.cpython-39.pyc'
import 'encodings.aliases' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e8669c40>
import 'encodings' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e86cf4c0>
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/utf_8.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/utf_8.abi3.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/utf_8.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/utf_8.py
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/__pycache__/utf_8.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/utf_8.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/__pycache__/utf_8.cpython-39.pyc'
import 'encodings.utf_8' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e86cf8e0>
import '_signal' # 
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/latin_1.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/latin_1.abi3.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/latin_1.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/latin_1.py
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/__pycache__/latin_1.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/latin_1.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/__pycache__/latin_1.cpython-39.pyc'
import 'encodings.latin_1' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e8669d60>
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/io.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/io.abi3.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/io.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/io.py
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/io.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/io.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/io.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/abc.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/abc.abi3.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/abc.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/abc.py
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/abc.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/abc.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/abc.cpython-39.pyc'
import '_abc' # 
import 'abc' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e867f250>
import 'io' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e8669f40>
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/site.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/site.abi3.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/site.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/site.py
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/site.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/site.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/site.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/os.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/os.abi3.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/os.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/os.py
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/os.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/os.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/os.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/stat.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/stat.abi3.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/stat.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/stat.py
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/stat.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/stat.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/stat.cpython-39.pyc'
import '_stat' # 
import 'stat' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e861eac0>
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/_collections_abc.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/_collections_abc.abi3.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/_collections_abc.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/_collections_abc.py
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/_collections_abc.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/_collections_abc.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/_collections_abc.cpython-39.pyc'
import '_collections_abc' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e861eb20>
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/posixpath.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/posixpath.abi3.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/posixpath.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/posixpath.py
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/posixpath.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/posixpath.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/posixpath.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/genericpath.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/genericpath.abi3.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/genericpath.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/genericpath.py
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/genericpath.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/genericpath.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/genericpath.cpython-39.pyc'
import 'genericpath' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e85b11c0>
import 'posixpath' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e861e9a0>
import 'os' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e86141f0>
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/_sitebuiltins.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/_sitebuiltins.abi3.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/_sitebuiltins.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/_sitebuiltins.py
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/_sitebuiltins.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/_sitebuiltins.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/_sitebuiltins.cpython-39.pyc'
import '_sitebuiltins' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e8614a90>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_bootlocale.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_bootlocale.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_bootlocale.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_bootlocale.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/_bootlocale.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_bootlocale.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/_bootlocale.cpython-39.pyc'
import '_locale' # 
import '_bootlocale' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e85b1730>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sitecustomize.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sitecustomize.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sitecustomize.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sitecustomize.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/sitecustomize.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sitecustomize.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/sitecustomize.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/re.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/re.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/re.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/re.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/re.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/re.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/re.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/enum.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/enum.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/enum.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/enum.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/enum.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/enum.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/enum.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/types.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/types.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/types.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/types.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/types.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/types.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/types.cpython-39.pyc'
import 'types' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e85d8be0>
import 'enum' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e85cb730>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_compile.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_compile.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_compile.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_compile.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/sre_compile.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_compile.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/sre_compile.cpython-39.pyc'
import '_sre' # 
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_parse.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_parse.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_parse.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_parse.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/sre_parse.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_parse.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/sre_parse.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_constants.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_constants.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_constants.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_constants.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/sre_constants.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_constants.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/sre_constants.cpython-39.pyc'
import 'sre_constants' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e85739a0>
import 'sre_parse' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e85e5fd0>
import 'sre_compile' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e85e5730>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/functools.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/functools.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/functools.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/functools.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/functools.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/functools.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/functools.cpython-39.pyc'
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/collections/__pycache__/__init__.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/collections/__init__.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/collections/__pycache__/__init__.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/heapq.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/heapq.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/heapq.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/heapq.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/heapq.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/heapq.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/heapq.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_heapq.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_heapq.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_heapq.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_heapq.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_heapq.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_heapq.cpython-39-x86_64-linux-gnu.so
# extension module '_heapq' loaded from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_heapq.cpython-39-x86_64-linux-gnu.so'
# extension module '_heapq' executed from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_heapq.cpython-39-x86_64-linux-gnu.so'
import '_heapq' # <_frozen_importlib_external.ExtensionFileLoader object at 0x7f47e85397f0>
import 'heapq' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e8539250>
import 'itertools' # 
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/keyword.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/keyword.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/keyword.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/keyword.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/keyword.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/keyword.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/keyword.cpython-39.pyc'
import 'keyword' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e85398b0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/operator.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/operator.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/operator.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/operator.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/operator.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/operator.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/operator.cpython-39.pyc'
import '_operator' # 
import 'operator' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e8539940>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/reprlib.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/reprlib.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/reprlib.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/reprlib.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/reprlib.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/reprlib.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/reprlib.cpython-39.pyc'
import 'reprlib' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e8539a00>
import '_collections' # 
import 'collections' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e85966a0>
import '_functools' # 
import 'functools' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e8584eb0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/copyreg.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/copyreg.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/copyreg.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/copyreg.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/copyreg.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/copyreg.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/copyreg.cpython-39.pyc'
import 'copyreg' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e8539040>
import 're' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e85b1a60>
import 'sitecustomize' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e85b1d00>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/usercustomize.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/usercustomize.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/usercustomize.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/usercustomize.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/usercustomize.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/usercustomize.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/usercustomize.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/usercustomize.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/usercustomize.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/usercustomize.pyc
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/usercustomize.cpython-39-x86_64-linux-gnu.so
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/usercustomize.abi3.so
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/usercustomize.so
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/usercustomize.py
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/usercustomize.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/usercustomize.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/usercustomize.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/usercustomize.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/usercustomize.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/usercustomize.pyc
import 'site' # <_frozen_importlib_external.SourceFileLoader object at 0x7f47e867fa00>
Python 3.9.6 (default, Jun 28 2021, 08:57:49) 
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
Traceback (most recent call last):
  File "", line 1, in 
ZeroDivisionError: division by zero
# clear builtins._
# clear sys.path
# clear sys.argv
# clear sys.ps1
# clear sys.ps2
# clear sys.last_type
# clear sys.last_value
# clear sys.last_traceback
# clear sys.path_hooks
# clear sys.path_importer_cache
# clear sys.meta_path
# clear sys.__interactivehook__
# restore sys.stdin
# restore sys.stdout
# restore sys.stderr
# cleanup[2] removing sys
# cleanup[2] removing builtins
# cleanup[2] removing _frozen_importlib
# cleanup[2] removing _imp
# cleanup[2] removing _thread
# cleanup[2] removing _warnings
# cleanup[2] removing _weakref
# cleanup[2] removing _io
# cleanup[2] removing marshal
# cleanup[2] removing posix
# cleanup[2] removing _frozen_importlib_external
# cleanup[2] removing time
# cleanup[2] removing zipimport
# destroy zipimport
# cleanup[2] removing _codecs
# cleanup[2] removing codecs
# cleanup[2] removing encodings.aliases
# cleanup[2] removing encodings
# destroy encodings
# cleanup[2] removing encodings.utf_8
# cleanup[2] removing _signal
# cleanup[2] removing encodings.latin_1
# cleanup[2] removing _abc
# cleanup[2] removing abc
# cleanup[2] removing io
# cleanup[2] removing __main__
# destroy __main__
# cleanup[2] removing _stat
# cleanup[2] removing stat
# cleanup[2] removing _collections_abc
# cleanup[2] removing genericpath
# cleanup[2] removing posixpath
# cleanup[2] removing os.path
# cleanup[2] removing os
# cleanup[2] removing _sitebuiltins
# cleanup[2] removing _locale
# cleanup[2] removing _bootlocale
# destroy _bootlocale
# cleanup[2] removing types
# destroy types
# cleanup[2] removing enum
# cleanup[2] removing _sre
# cleanup[2] removing sre_constants
# destroy sre_constants
# cleanup[2] removing sre_parse
# cleanup[2] removing sre_compile
# cleanup[2] removing _heapq
# cleanup[2] removing heapq
# cleanup[2] removing itertools
# cleanup[2] removing keyword
# destroy keyword
# cleanup[2] removing _operator
# cleanup[2] removing operator
# destroy operator
# cleanup[2] removing reprlib
# destroy reprlib
# cleanup[2] removing _collections
# cleanup[2] removing collections
# destroy collections
# cleanup[2] removing _functools
# cleanup[2] removing functools
# cleanup[2] removing copyreg
# cleanup[2] removing re
# cleanup[2] removing sitecustomize
# destroy sitecustomize
# destroy re
# cleanup[2] removing site
# destroy site
# destroy time
# destroy _sitebuiltins
# destroy io
# destroy abc
# destroy posixpath
# destroy _stat
# destroy genericpath
# destroy os
# destroy stat
# destroy enum
# destroy sre_compile
# destroy functools
# destroy _locale
# destroy copyreg
# destroy sre_parse
# destroy _abc
# destroy _collections_abc
# destroy heapq
# destroy _heapq
# destroy itertools
# destroy _operator
# destroy _collections
# destroy _functools
# cleanup[3] wiping _sre
#   clear[2] __name__
#   clear[2] __package__
#   clear[2] __loader__
#   clear[2] __spec__
#   clear[2] compile
#   clear[2] getcodesize
#   clear[2] ascii_iscased
#   clear[2] unicode_iscased
#   clear[2] ascii_tolower
#   clear[2] unicode_tolower
#   clear[2] MAGIC
#   clear[2] CODESIZE
#   clear[2] MAXREPEAT
#   clear[2] MAXGROUPS
#   clear[2] copyright
# cleanup[3] wiping encodings.latin_1
#   clear[2] __name__
#   clear[2] __doc__
#   clear[2] __package__
#   clear[2] __loader__
#   clear[2] __spec__
#   clear[2] __file__
#   clear[2] __cached__
#   clear[2] codecs
#   clear[2] Codec
#   clear[2] IncrementalEncoder
#   clear[2] IncrementalDecoder
#   clear[2] StreamWriter
#   clear[2] StreamReader
#   clear[2] StreamConverter
#   clear[2] getregentry
# cleanup[3] wiping _signal
#   clear[2] __name__
#   clear[2] __doc__
#   clear[2] __package__
#   clear[2] __loader__
#   clear[2] __spec__
#   clear[2] default_int_handler
#   clear[2] alarm
#   clear[2] setitimer
#   clear[2] getitimer
#   clear[2] signal
#   clear[2] raise_signal
#   clear[2] strsignal
#   clear[2] getsignal
#   clear[2] set_wakeup_fd
#   clear[2] siginterrupt
#   clear[2] pause
#   clear[2] pthread_kill
#   clear[2] pthread_sigmask
#   clear[2] sigpending
#   clear[2] sigwait
#   clear[2] sigwaitinfo
#   clear[2] sigtimedwait
#   clear[2] valid_signals
#   clear[2] struct_siginfo
#   clear[2] SIG_DFL
#   clear[2] SIG_IGN
#   clear[2] NSIG
#   clear[2] SIG_BLOCK
#   clear[2] SIG_UNBLOCK
#   clear[2] SIG_SETMASK
#   clear[2] SIGHUP
#   clear[2] SIGINT
#   clear[2] SIGQUIT
#   clear[2] SIGILL
#   clear[2] SIGTRAP
#   clear[2] SIGIOT
#   clear[2] SIGABRT
#   clear[2] SIGFPE
#   clear[2] SIGKILL
#   clear[2] SIGBUS
#   clear[2] SIGSEGV
#   clear[2] SIGSYS
#   clear[2] SIGPIPE
#   clear[2] SIGALRM
#   clear[2] SIGTERM
#   clear[2] SIGUSR1
#   clear[2] SIGUSR2
#   clear[2] SIGCLD
#   clear[2] SIGCHLD
#   clear[2] SIGPWR
#   clear[2] SIGIO
#   clear[2] SIGURG
#   clear[2] SIGWINCH
#   clear[2] SIGPOLL
#   clear[2] SIGSTOP
#   clear[2] SIGTSTP
#   clear[2] SIGCONT
#   clear[2] SIGTTIN
#   clear[2] SIGTTOU
#   clear[2] SIGVTALRM
#   clear[2] SIGPROF
#   clear[2] SIGXCPU
#   clear[2] SIGXFSZ
#   clear[2] SIGRTMIN
#   clear[2] SIGRTMAX
#   clear[2] ITIMER_REAL
#   clear[2] ITIMER_VIRTUAL
#   clear[2] ITIMER_PROF
#   clear[2] ItimerError
# cleanup[3] wiping encodings.utf_8
#   clear[2] __name__
#   clear[2] __doc__
#   clear[2] __package__
#   clear[2] __loader__
#   clear[2] __spec__
#   clear[2] __file__
#   clear[2] __cached__
#   clear[2] codecs
#   clear[2] encode
#   clear[2] decode
#   clear[2] IncrementalEncoder
#   clear[2] IncrementalDecoder
#   clear[2] StreamWriter
#   clear[2] StreamReader
#   clear[2] getregentry
# cleanup[3] wiping encodings.aliases
#   clear[2] __name__
#   clear[2] __doc__
#   clear[2] __package__
#   clear[2] __loader__
#   clear[2] __spec__
#   clear[2] __file__
#   clear[2] __cached__
#   clear[2] aliases
# cleanup[3] wiping codecs
#   clear[1] _false
#   clear[2] __name__
#   clear[2] __doc__
#   clear[2] __package__
#   clear[2] __loader__
#   clear[2] __spec__
#   clear[2] __file__
#   clear[2] __cached__
#   clear[2] builtins
#   clear[2] sys
#   clear[2] register
#   clear[2] lookup
#   clear[2] encode
#   clear[2] decode
#   clear[2] escape_encode
#   clear[2] escape_decode
#   clear[2] utf_8_encode
#   clear[2] utf_8_decode
#   clear[2] utf_7_encode
#   clear[2] utf_7_decode
#   clear[2] utf_16_encode
#   clear[2] utf_16_le_encode
#   clear[2] utf_16_be_encode
#   clear[2] utf_16_decode
#   clear[2] utf_16_le_decode
#   clear[2] utf_16_be_decode
#   clear[2] utf_16_ex_decode
#   clear[2] utf_32_encode
#   clear[2] utf_32_le_encode
#   clear[2] utf_32_be_encode
#   clear[2] utf_32_decode
#   clear[2] utf_32_le_decode
#   clear[2] utf_32_be_decode
#   clear[2] utf_32_ex_decode
#   clear[2] unicode_escape_encode
#   clear[2] unicode_escape_decode
#   clear[2] raw_unicode_escape_encode
#   clear[2] raw_unicode_escape_decode
#   clear[2] latin_1_encode
#   clear[2] latin_1_decode
#   clear[2] ascii_encode
#   clear[2] ascii_decode
#   clear[2] charmap_encode
#   clear[2] charmap_decode
#   clear[2] charmap_build
#   clear[2] readbuffer_encode
#   clear[2] register_error
#   clear[2] lookup_error
#   clear[2] __all__
#   clear[2] BOM_UTF8
#   clear[2] BOM_LE
#   clear[2] BOM_UTF16_LE
#   clear[2] BOM_BE
#   clear[2] BOM_UTF16_BE
#   clear[2] BOM_UTF32_LE
#   clear[2] BOM_UTF32_BE
#   clear[2] BOM
#   clear[2] BOM_UTF16
#   clear[2] BOM_UTF32
#   clear[2] BOM32_LE
#   clear[2] BOM32_BE
#   clear[2] BOM64_LE
#   clear[2] BOM64_BE
#   clear[2] CodecInfo
#   clear[2] Codec
#   clear[2] IncrementalEncoder
#   clear[2] BufferedIncrementalEncoder
#   clear[2] IncrementalDecoder
#   clear[2] BufferedIncrementalDecoder
#   clear[2] StreamWriter
#   clear[2] StreamReader
#   clear[2] StreamReaderWriter
#   clear[2] StreamRecoder
#   clear[2] open
#   clear[2] EncodedFile
#   clear[2] getencoder
#   clear[2] getdecoder
#   clear[2] getincrementalencoder
#   clear[2] getincrementaldecoder
#   clear[2] getreader
#   clear[2] getwriter
#   clear[2] iterencode
#   clear[2] iterdecode
#   clear[2] make_identity_dict
#   clear[2] make_encoding_map
#   clear[2] strict_errors
#   clear[2] ignore_errors
#   clear[2] replace_errors
#   clear[2] xmlcharrefreplace_errors
#   clear[2] backslashreplace_errors
#   clear[2] namereplace_errors
# cleanup[3] wiping _codecs
#   clear[1] _forget_codec
#   clear[2] __name__
#   clear[2] __package__
#   clear[2] __loader__
#   clear[2] __spec__
#   clear[2] register
#   clear[2] lookup
#   clear[2] encode
#   clear[2] decode
#   clear[2] escape_encode
#   clear[2] escape_decode
#   clear[2] utf_8_encode
#   clear[2] utf_8_decode
#   clear[2] utf_7_encode
#   clear[2] utf_7_decode
#   clear[2] utf_16_encode
#   clear[2] utf_16_le_encode
#   clear[2] utf_16_be_encode
#   clear[2] utf_16_decode
#   clear[2] utf_16_le_decode
#   clear[2] utf_16_be_decode
#   clear[2] utf_16_ex_decode
#   clear[2] utf_32_encode
#   clear[2] utf_32_le_encode
#   clear[2] utf_32_be_encode
#   clear[2] utf_32_decode
#   clear[2] utf_32_le_decode
#   clear[2] utf_32_be_decode
#   clear[2] utf_32_ex_decode
#   clear[2] unicode_escape_encode
#   clear[2] unicode_escape_decode
#   clear[2] raw_unicode_escape_encode
#   clear[2] raw_unicode_escape_decode
#   clear[2] latin_1_encode
#   clear[2] latin_1_decode
#   clear[2] ascii_encode
#   clear[2] ascii_decode
#   clear[2] charmap_encode
#   clear[2] charmap_decode
#   clear[2] charmap_build
#   clear[2] readbuffer_encode
#   clear[2] register_error
#   clear[2] lookup_error
# cleanup[3] wiping _frozen_importlib_external
#   clear[1] _imp
#   clear[1] _io
#   clear[1] _warnings
#   clear[1] _MS_WINDOWS
#   clear[1] _os
#   clear[1] _pathseps_with_colon
#   clear[1] _CASE_INSENSITIVE_PLATFORMS_STR_KEY
#   clear[1] _CASE_INSENSITIVE_PLATFORMS_BYTES_KEY
#   clear[1] _CASE_INSENSITIVE_PLATFORMS
#   clear[1] _make_relax_case
#   clear[1] _pack_uint32
#   clear[1] _unpack_uint32
#   clear[1] _unpack_uint16
#   clear[1] _path_join
#   clear[1] _path_split
#   clear[1] _path_stat
#   clear[1] _path_is_mode_type
#   clear[1] _path_isfile
#   clear[1] _path_isdir
#   clear[1] _path_isabs
#   clear[1] _write_atomic
#   clear[1] _code_type
#   clear[1] _RAW_MAGIC_NUMBER
#   clear[1] _PYCACHE
#   clear[1] _OPT
#   clear[1] _get_sourcefile
#   clear[1] _get_cached
#   clear[1] _calc_mode
#   clear[1] _check_name
#   clear[1] _find_module_shim
#   clear[1] _classify_pyc
#   clear[1] _validate_timestamp_pyc
#   clear[1] _validate_hash_pyc
#   clear[1] _compile_bytecode
#   clear[1] _code_to_timestamp_pyc
#   clear[1] _code_to_hash_pyc
#   clear[1] _POPULATE
#   clear[1] _LoaderBasics
#   clear[1] _NamespacePath
#   clear[1] _NamespaceLoader
#   clear[1] _fix_up_module
#   clear[1] _get_supported_file_loaders
#   clear[1] _setup
#   clear[1] _install
#   clear[1] _bootstrap
#   clear[1] _relax_case
#   clear[2] __name__
#   clear[2] __doc__
#   clear[2] __package__
#   clear[2] __loader__
#   clear[2] __spec__
#   clear[2] sys
#   clear[2] marshal
#   clear[2] path_separators
#   clear[2] path_sep
#   clear[2] path_sep_tuple
#   clear[2] MAGIC_NUMBER
#   clear[2] SOURCE_SUFFIXES
#   clear[2] BYTECODE_SUFFIXES
#   clear[2] DEBUG_BYTECODE_SUFFIXES
#   clear[2] OPTIMIZED_BYTECODE_SUFFIXES
#   clear[2] cache_from_source
#   clear[2] source_from_cache
#   clear[2] decode_source
#   clear[2] spec_from_file_location
#   clear[2] WindowsRegistryFinder
#   clear[2] SourceLoader
#   clear[2] FileLoader
#   clear[2] SourceFileLoader
#   clear[2] SourcelessFileLoader
#   clear[2] EXTENSION_SUFFIXES
#   clear[2] ExtensionFileLoader
#   clear[2] PathFinder
#   clear[2] FileFinder
# cleanup[3] wiping posix
#   clear[1] _exit
#   clear[1] _have_functions
#   clear[2] __name__
#   clear[2] __doc__
#   clear[2] __package__
#   clear[2] __loader__
#   clear[2] __spec__
#   clear[2] stat
#   clear[2] access
#   clear[2] ttyname
#   clear[2] chdir
#   clear[2] chmod
#   clear[2] fchmod
#   clear[2] chown
#   clear[2] fchown
#   clear[2] lchown
#   clear[2] chroot
#   clear[2] ctermid
#   clear[2] getcwd
#   clear[2] getcwdb
#   clear[2] link
#   clear[2] listdir
#   clear[2] lstat
#   clear[2] mkdir
#   clear[2] nice
#   clear[2] getpriority
#   clear[2] setpriority
#   clear[2] posix_spawn
#   clear[2] posix_spawnp
#   clear[2] readlink
#   clear[2] rename
#   clear[2] replace
#   clear[2] rmdir
#   clear[2] symlink
#   clear[2] system
#   clear[2] umask
#   clear[2] uname
#   clear[2] unlink
#   clear[2] remove
#   clear[2] utime
#   clear[2] times
#   clear[2] execv
#   clear[2] execve
#   clear[2] fork
#   clear[2] register_at_fork
#   clear[2] sched_get_priority_max
#   clear[2] sched_get_priority_min
#   clear[2] sched_getparam
#   clear[2] sched_getscheduler
#   clear[2] sched_rr_get_interval
#   clear[2] sched_setparam
#   clear[2] sched_setscheduler
#   clear[2] sched_yield
#   clear[2] sched_setaffinity
#   clear[2] sched_getaffinity
#   clear[2] openpty
#   clear[2] forkpty
#   clear[2] getegid
#   clear[2] geteuid
#   clear[2] getgid
#   clear[2] getgrouplist
#   clear[2] getgroups
#   clear[2] getpid
#   clear[2] getpgrp
#   clear[2] getppid
#   clear[2] getuid
#   clear[2] getlogin
#   clear[2] kill
#   clear[2] killpg
#   clear[2] setuid
#   clear[2] seteuid
#   clear[2] setreuid
#   clear[2] setgid
#   clear[2] setegid
#   clear[2] setregid
#   clear[2] setgroups
#   clear[2] initgroups
#   clear[2] getpgid
#   clear[2] setpgrp
#   clear[2] wait
#   clear[2] wait3
#   clear[2] wait4
#   clear[2] waitid
#   clear[2] waitpid
#   clear[2] getsid
#   clear[2] setsid
#   clear[2] setpgid
#   clear[2] tcgetpgrp
#   clear[2] tcsetpgrp
#   clear[2] open
#   clear[2] close
#   clear[2] closerange
#   clear[2] device_encoding
#   clear[2] dup
#   clear[2] dup2
#   clear[2] lockf
#   clear[2] lseek
#   clear[2] read
#   clear[2] readv
#   clear[2] pread
#   clear[2] preadv
#   clear[2] write
#   clear[2] writev
#   clear[2] pwrite
#   clear[2] pwritev
#   clear[2] sendfile
#   clear[2] fstat
#   clear[2] isatty
#   clear[2] pipe
#   clear[2] pipe2
#   clear[2] mkfifo
#   clear[2] mknod
#   clear[2] major
#   clear[2] minor
#   clear[2] makedev
#   clear[2] ftruncate
#   clear[2] truncate
#   clear[2] posix_fallocate
#   clear[2] posix_fadvise
#   clear[2] putenv
#   clear[2] unsetenv
#   clear[2] strerror
#   clear[2] fchdir
#   clear[2] fsync
#   clear[2] sync
#   clear[2] fdatasync
#   clear[2] WCOREDUMP
#   clear[2] WIFCONTINUED
#   clear[2] WIFSTOPPED
#   clear[2] WIFSIGNALED
#   clear[2] WIFEXITED
#   clear[2] WEXITSTATUS
#   clear[2] WTERMSIG
#   clear[2] WSTOPSIG
#   clear[2] fstatvfs
#   clear[2] statvfs
#   clear[2] confstr
#   clear[2] sysconf
#   clear[2] fpathconf
#   clear[2] pathconf
#   clear[2] abort
#   clear[2] getloadavg
#   clear[2] urandom
#   clear[2] setresuid
#   clear[2] setresgid
#   clear[2] getresuid
#   clear[2] getresgid
#   clear[2] getxattr
#   clear[2] setxattr
#   clear[2] removexattr
#   clear[2] listxattr
#   clear[2] get_terminal_size
#   clear[2] cpu_count
#   clear[2] get_inheritable
#   clear[2] set_inheritable
#   clear[2] get_blocking
#   clear[2] set_blocking
#   clear[2] scandir
#   clear[2] fspath
#   clear[2] getrandom
#   clear[2] waitstatus_to_exitcode
#   clear[2] environ
#   clear[2] F_OK
#   clear[2] R_OK
#   clear[2] W_OK
#   clear[2] X_OK
#   clear[2] NGROUPS_MAX
#   clear[2] TMP_MAX
#   clear[2] WCONTINUED
#   clear[2] WNOHANG
#   clear[2] WUNTRACED
#   clear[2] O_RDONLY
#   clear[2] O_WRONLY
#   clear[2] O_RDWR
#   clear[2] O_NDELAY
#   clear[2] O_NONBLOCK
#   clear[2] O_APPEND
#   clear[2] O_DSYNC
#   clear[2] O_RSYNC
#   clear[2] O_SYNC
#   clear[2] O_NOCTTY
#   clear[2] O_CREAT
#   clear[2] O_EXCL
#   clear[2] O_TRUNC
#   clear[2] O_LARGEFILE
#   clear[2] O_PATH
#   clear[2] O_TMPFILE
#   clear[2] PRIO_PROCESS
#   clear[2] PRIO_PGRP
#   clear[2] PRIO_USER
#   clear[2] O_CLOEXEC
#   clear[2] O_ACCMODE
#   clear[2] SEEK_HOLE
#   clear[2] SEEK_DATA
#   clear[2] O_ASYNC
#   clear[2] O_DIRECT
#   clear[2] O_DIRECTORY
#   clear[2] O_NOFOLLOW
#   clear[2] O_NOATIME
#   clear[2] EX_OK
#   clear[2] EX_USAGE
#   clear[2] EX_DATAERR
#   clear[2] EX_NOINPUT
#   clear[2] EX_NOUSER
#   clear[2] EX_NOHOST
#   clear[2] EX_UNAVAILABLE
#   clear[2] EX_SOFTWARE
#   clear[2] EX_OSERR
#   clear[2] EX_OSFILE
#   clear[2] EX_CANTCREAT
#   clear[2] EX_IOERR
#   clear[2] EX_TEMPFAIL
#   clear[2] EX_PROTOCOL
#   clear[2] EX_NOPERM
#   clear[2] EX_CONFIG
#   clear[2] ST_RDONLY
#   clear[2] ST_NOSUID
#   clear[2] ST_NODEV
#   clear[2] ST_NOEXEC
#   clear[2] ST_SYNCHRONOUS
#   clear[2] ST_MANDLOCK
#   clear[2] ST_WRITE
#   clear[2] ST_APPEND
#   clear[2] ST_NOATIME
#   clear[2] ST_NODIRATIME
#   clear[2] ST_RELATIME
#   clear[2] POSIX_FADV_NORMAL
#   clear[2] POSIX_FADV_SEQUENTIAL
#   clear[2] POSIX_FADV_RANDOM
#   clear[2] POSIX_FADV_NOREUSE
#   clear[2] POSIX_FADV_WILLNEED
#   clear[2] POSIX_FADV_DONTNEED
#   clear[2] P_PID
#   clear[2] P_PGID
#   clear[2] P_ALL
#   clear[2] WEXITED
#   clear[2] WNOWAIT
#   clear[2] WSTOPPED
#   clear[2] CLD_EXITED
#   clear[2] CLD_KILLED
#   clear[2] CLD_DUMPED
#   clear[2] CLD_TRAPPED
#   clear[2] CLD_STOPPED
#   clear[2] CLD_CONTINUED
#   clear[2] F_LOCK
#   clear[2] F_TLOCK
#   clear[2] F_ULOCK
#   clear[2] F_TEST
#   clear[2] POSIX_SPAWN_OPEN
#   clear[2] POSIX_SPAWN_CLOSE
#   clear[2] POSIX_SPAWN_DUP2
#   clear[2] SCHED_OTHER
#   clear[2] SCHED_FIFO
#   clear[2] SCHED_RR
#   clear[2] SCHED_BATCH
#   clear[2] SCHED_IDLE
#   clear[2] SCHED_RESET_ON_FORK
#   clear[2] XATTR_CREATE
#   clear[2] XATTR_REPLACE
#   clear[2] XATTR_SIZE_MAX
#   clear[2] RTLD_LAZY
#   clear[2] RTLD_NOW
#   clear[2] RTLD_GLOBAL
#   clear[2] RTLD_LOCAL
#   clear[2] RTLD_NODELETE
#   clear[2] RTLD_NOLOAD
#   clear[2] RTLD_DEEPBIND
#   clear[2] GRND_RANDOM
#   clear[2] GRND_NONBLOCK
#   clear[2] pathconf_names
#   clear[2] confstr_names
#   clear[2] sysconf_names
#   clear[2] error
#   clear[2] waitid_result
#   clear[2] stat_result
#   clear[2] statvfs_result
#   clear[2] sched_param
#   clear[2] terminal_size
#   clear[2] DirEntry
#   clear[2] times_result
#   clear[2] uname_result
# cleanup[3] wiping marshal
#   clear[2] __name__
#   clear[2] __doc__
#   clear[2] __package__
#   clear[2] __loader__
#   clear[2] __spec__
#   clear[2] dump
#   clear[2] load
#   clear[2] dumps
#   clear[2] loads
#   clear[2] version
# cleanup[3] wiping _io
#   clear[1] _IOBase
#   clear[1] _RawIOBase
#   clear[1] _BufferedIOBase
#   clear[1] _TextIOBase
#   clear[2] __name__
#   clear[2] __doc__
#   clear[2] __package__
#   clear[2] __loader__
#   clear[2] __spec__
#   clear[2] open
#   clear[2] open_code
#   clear[2] DEFAULT_BUFFER_SIZE
#   clear[2] UnsupportedOperation
#   clear[2] BlockingIOError
#   clear[2] FileIO
#   clear[2] BytesIO
#   clear[2] StringIO
#   clear[2] BufferedReader
#   clear[2] BufferedWriter
#   clear[2] BufferedRWPair
#   clear[2] BufferedRandom
#   clear[2] TextIOWrapper
#   clear[2] IncrementalNewlineDecoder
# cleanup[3] wiping _weakref
#   clear[1] _remove_dead_weakref
#   clear[2] __name__
#   clear[2] __doc__
#   clear[2] __package__
#   clear[2] __loader__
#   clear[2] __spec__
#   clear[2] getweakrefcount
#   clear[2] getweakrefs
#   clear[2] proxy
#   clear[2] ref
#   clear[2] ReferenceType
#   clear[2] ProxyType
#   clear[2] CallableProxyType
# cleanup[3] wiping _warnings
#   clear[1] _filters_mutated
#   clear[1] _onceregistry
#   clear[1] _defaultaction
#   clear[2] __name__
#   clear[2] __doc__
#   clear[2] __package__
#   clear[2] __loader__
#   clear[2] __spec__
#   clear[2] warn
#   clear[2] warn_explicit
#   clear[2] filters
# cleanup[3] wiping _thread
#   clear[1] _count
#   clear[1] _set_sentinel
#   clear[1] _excepthook
#   clear[1] _local
#   clear[1] _ExceptHookArgs
#   clear[2] __name__
#   clear[2] __doc__
#   clear[2] __package__
#   clear[2] __loader__
#   clear[2] __spec__
#   clear[2] start_new_thread
#   clear[2] start_new
#   clear[2] allocate_lock
#   clear[2] allocate
#   clear[2] exit_thread
#   clear[2] exit
#   clear[2] interrupt_main
#   clear[2] get_ident
#   clear[2] get_native_id
#   clear[2] stack_size
#   clear[2] TIMEOUT_MAX
#   clear[2] error
#   clear[2] LockType
#   clear[2] RLock
# cleanup[3] wiping _imp
#   clear[1] _fix_co_filename
#   clear[2] __name__
#   clear[2] __doc__
#   clear[2] __package__
#   clear[2] __loader__
#   clear[2] __spec__
#   clear[2] extension_suffixes
#   clear[2] lock_held
#   clear[2] acquire_lock
#   clear[2] release_lock
#   clear[2] get_frozen_object
#   clear[2] is_frozen_package
#   clear[2] create_builtin
#   clear[2] init_frozen
#   clear[2] is_builtin
#   clear[2] is_frozen
#   clear[2] create_dynamic
#   clear[2] exec_dynamic
#   clear[2] exec_builtin
#   clear[2] source_hash
#   clear[2] check_hash_based_pycs
# cleanup[3] wiping _frozen_importlib
#   clear[1] _bootstrap_external
# destroy _frozen_importlib_external
#   clear[1] _wrap
#   clear[1] _new_module
#   clear[1] _module_locks
#   clear[1] _blocking_on
#   clear[1] _DeadlockError
#   clear[1] _ModuleLock
#   clear[1] _DummyModuleLock
#   clear[1] _ModuleLockManager
#   clear[1] _get_module_lock
#   clear[1] _lock_unlock_module
#   clear[1] _call_with_frames_removed
#   clear[1] _verbose_message
#   clear[1] _requires_builtin
#   clear[1] _requires_frozen
#   clear[1] _load_module_shim
#   clear[1] _module_repr
#   clear[1] _spec_from_module
#   clear[1] _init_module_attrs
#   clear[1] _module_repr_from_spec
#   clear[1] _exec
#   clear[1] _load_backward_compatible
#   clear[1] _load_unlocked
#   clear[1] _load
#   clear[1] _ImportLockContext
#   clear[1] _resolve_name
#   clear[1] _find_spec_legacy
#   clear[1] _find_spec
#   clear[1] _sanity_check
#   clear[1] _ERR_MSG_PREFIX
#   clear[1] _ERR_MSG
#   clear[1] _find_and_load_unlocked
#   clear[1] _NEEDS_LOADING
#   clear[1] _find_and_load
#   clear[1] _gcd_import
#   clear[1] _handle_fromlist
#   clear[1] _calc___package__
#   clear[1] _builtin_from_name
#   clear[1] _setup
#   clear[1] _install
#   clear[1] _install_external_importers
#   clear[1] _imp
# destroy _imp
#   clear[1] _thread
#   clear[1] _warnings
#   clear[1] _weakref
# destroy _weakref
#   clear[2] __name__
#   clear[2] __doc__
#   clear[2] __package__
#   clear[2] __loader__
#   clear[2] __spec__
#   clear[2] ModuleSpec
#   clear[2] spec_from_loader
#   clear[2] module_from_spec
#   clear[2] BuiltinImporter
#   clear[2] FrozenImporter
#   clear[2] __import__
#   clear[2] sys
# cleanup[3] wiping sys
#   clear[1] _clear_type_cache
#   clear[1] _current_frames
#   clear[1] _getframe
#   clear[1] _debugmallocstats
#   clear[1] _git
#   clear[1] _framework
#   clear[1] _base_executable
#   clear[1] _xoptions
#   clear[2] __name__
#   clear[2] __doc__
#   clear[2] __package__
#   clear[2] __loader__
#   clear[2] __spec__
#   clear[2] addaudithook
#   clear[2] audit
#   clear[2] breakpointhook
#   clear[2] displayhook
#   clear[2] exc_info
#   clear[2] excepthook
#   clear[2] exit
#   clear[2] getdefaultencoding
#   clear[2] getdlopenflags
#   clear[2] getallocatedblocks
#   clear[2] getfilesystemencoding
#   clear[2] getfilesystemencodeerrors
#   clear[2] getrefcount
#   clear[2] getrecursionlimit
#   clear[2] getsizeof
#   clear[2] intern
#   clear[2] is_finalizing
#   clear[2] setswitchinterval
#   clear[2] getswitchinterval
#   clear[2] setdlopenflags
#   clear[2] setprofile
#   clear[2] getprofile
#   clear[2] setrecursionlimit
#   clear[2] settrace
#   clear[2] gettrace
#   clear[2] call_tracing
#   clear[2] set_coroutine_origin_tracking_depth
#   clear[2] get_coroutine_origin_tracking_depth
#   clear[2] set_asyncgen_hooks
#   clear[2] get_asyncgen_hooks
#   clear[2] unraisablehook
#   clear[2] modules
#   clear[2] stderr
#   clear[2] __stderr__
#   clear[2] __displayhook__
#   clear[2] __excepthook__
#   clear[2] __breakpointhook__
#   clear[2] __unraisablehook__
#   clear[2] version
#   clear[2] hexversion
#   clear[2] api_version
#   clear[2] copyright
#   clear[2] platform
#   clear[2] maxsize
#   clear[2] float_info
#   clear[2] int_info
#   clear[2] hash_info
#   clear[2] maxunicode
#   clear[2] builtin_module_names
#   clear[2] byteorder
#   clear[2] abiflags
#   clear[2] version_info
#   clear[2] implementation
#   clear[2] flags
#   clear[2] float_repr_style
#   clear[2] thread_info
#   clear[2] executable
#   clear[2] prefix
#   clear[2] base_prefix
#   clear[2] exec_prefix
#   clear[2] base_exec_prefix
#   clear[2] platlibdir
#   clear[2] warnoptions
#   clear[2] dont_write_bytecode
#   clear[2] __stdin__
#   clear[2] stdin
#   clear[2] __stdout__
#   clear[2] stdout
# cleanup[3] wiping builtins
#   clear[2] __name__
#   clear[2] __doc__
#   clear[2] __build_class__
#   clear[2] __import__
#   clear[2] abs
#   clear[2] all
#   clear[2] any
#   clear[2] ascii
#   clear[2] bin
#   clear[2] breakpoint
#   clear[2] callable
#   clear[2] chr
#   clear[2] compile
#   clear[2] delattr
#   clear[2] dir
#   clear[2] divmod
#   clear[2] eval
#   clear[2] exec
#   clear[2] format
#   clear[2] getattr
#   clear[2] globals
#   clear[2] hasattr
#   clear[2] hash
#   clear[2] hex
#   clear[2] id
#   clear[2] input
#   clear[2] isinstance
#   clear[2] issubclass
#   clear[2] iter
#   clear[2] len
#   clear[2] locals
#   clear[2] max
#   clear[2] min
#   clear[2] next
#   clear[2] oct
#   clear[2] ord
#   clear[2] pow
#   clear[2] print
#   clear[2] repr
#   clear[2] round
#   clear[2] setattr
#   clear[2] sorted
#   clear[2] sum
#   clear[2] vars
#   clear[2] Ellipsis
#   clear[2] NotImplemented
#   clear[2] False
#   clear[2] True
#   clear[2] bool
#   clear[2] memoryview
#   clear[2] bytearray
#   clear[2] bytes
#   clear[2] classmethod
#   clear[2] complex
#   clear[2] dict
#   clear[2] enumerate
#   clear[2] filter
#   clear[2] float
#   clear[2] frozenset
#   clear[2] property
#   clear[2] int
#   clear[2] list
#   clear[2] map
#   clear[2] object
#   clear[2] range
#   clear[2] reversed
#   clear[2] set
#   clear[2] slice
#   clear[2] staticmethod
#   clear[2] str
#   clear[2] super
#   clear[2] tuple
#   clear[2] type
#   clear[2] zip
#   clear[2] __debug__
#   clear[2] BaseException
#   clear[2] Exception
#   clear[2] TypeError
#   clear[2] StopAsyncIteration
#   clear[2] StopIteration
#   clear[2] GeneratorExit
#   clear[2] SystemExit
#   clear[2] KeyboardInterrupt
#   clear[2] ImportError
#   clear[2] ModuleNotFoundError
#   clear[2] OSError
#   clear[2] EnvironmentError
#   clear[2] IOError
#   clear[2] EOFError
#   clear[2] RuntimeError
#   clear[2] RecursionError
#   clear[2] NotImplementedError
#   clear[2] NameError
#   clear[2] UnboundLocalError
#   clear[2] AttributeError
#   clear[2] SyntaxError
#   clear[2] IndentationError
#   clear[2] TabError
#   clear[2] LookupError
#   clear[2] IndexError
#   clear[2] KeyError
#   clear[2] ValueError
#   clear[2] UnicodeError
#   clear[2] UnicodeEncodeError
#   clear[2] UnicodeDecodeError
#   clear[2] UnicodeTranslateError
#   clear[2] AssertionError
#   clear[2] ArithmeticError
#   clear[2] FloatingPointError
#   clear[2] OverflowError
#   clear[2] ZeroDivisionError
#   clear[2] SystemError
#   clear[2] ReferenceError
#   clear[2] MemoryError
#   clear[2] BufferError
#   clear[2] Warning
#   clear[2] UserWarning
#   clear[2] DeprecationWarning
#   clear[2] PendingDeprecationWarning
#   clear[2] SyntaxWarning
#   clear[2] RuntimeWarning
#   clear[2] FutureWarning
#   clear[2] ImportWarning
#   clear[2] UnicodeWarning
#   clear[2] BytesWarning
#   clear[2] ResourceWarning
#   clear[2] ConnectionError
#   clear[2] BlockingIOError
#   clear[2] BrokenPipeError
#   clear[2] ChildProcessError
#   clear[2] ConnectionAbortedError
#   clear[2] ConnectionRefusedError
#   clear[2] ConnectionResetError
#   clear[2] FileExistsError
#   clear[2] FileNotFoundError
#   clear[2] IsADirectoryError
#   clear[2] NotADirectoryError
#   clear[2] InterruptedError
#   clear[2] PermissionError
#   clear[2] ProcessLookupError
#   clear[2] TimeoutError
# destroy _sre
# destroy _signal
# destroy marshal
# destroy io
# destroy _warnings
# destroy _thread
# destroy posix
# destroy _frozen_importlib
# clear sys.audit hooks

I see that Python will also load ~/.local/lib/python3.9/site-packages/usercustomize.py on startup, and it works fine for me as the startup script.

$ cat ~/.local/lib/python3.9/site-packages/usercustomize.py <<EOF
print('=== usercustomize test ===')

try:
    from rich import print
    import rich.pretty
    import rich.traceback
except ImportError:
    pass
else:
    rich.pretty.install()
    rich.traceback.install()
EOF

$ echo '1 / 0' | 'python3 -vv -
python -vv output with ~/.local/lib/python3.9/site-packages/usercustomize.py.
import _frozen_importlib # frozen
import _imp # builtin
import '_thread' # 
import '_warnings' # 
import '_weakref' # 
import '_io' # 
import 'marshal' # 
import 'posix' # 
import '_frozen_importlib_external' # 
# installing zipimport hook
import 'time' # 
import 'zipimport' # 
# installed zipimport hook
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/__pycache__/__init__.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/__init__.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/__pycache__/__init__.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/codecs.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/codecs.abi3.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/codecs.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/codecs.py
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/codecs.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/codecs.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/codecs.cpython-39.pyc'
import '_codecs' # 
import 'codecs' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc7752700>
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/aliases.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/aliases.abi3.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/aliases.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/aliases.py
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/__pycache__/aliases.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/aliases.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/__pycache__/aliases.cpython-39.pyc'
import 'encodings.aliases' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc76ecc70>
import 'encodings' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc77524f0>
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/utf_8.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/utf_8.abi3.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/utf_8.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/utf_8.py
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/__pycache__/utf_8.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/utf_8.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/__pycache__/utf_8.cpython-39.pyc'
import 'encodings.utf_8' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc7752910>
import '_signal' # 
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/latin_1.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/latin_1.abi3.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/latin_1.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/latin_1.py
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/__pycache__/latin_1.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/latin_1.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/encodings/__pycache__/latin_1.cpython-39.pyc'
import 'encodings.latin_1' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc76ecd90>
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/io.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/io.abi3.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/io.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/io.py
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/io.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/io.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/io.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/abc.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/abc.abi3.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/abc.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/abc.py
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/abc.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/abc.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/abc.cpython-39.pyc'
import '_abc' # 
import 'abc' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc7702280>
import 'io' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc76ecf70>
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/site.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/site.abi3.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/site.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/site.py
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/site.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/site.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/site.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/os.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/os.abi3.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/os.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/os.py
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/os.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/os.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/os.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/stat.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/stat.abi3.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/stat.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/stat.py
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/stat.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/stat.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/stat.cpython-39.pyc'
import '_stat' # 
import 'stat' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc76a1af0>
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/_collections_abc.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/_collections_abc.abi3.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/_collections_abc.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/_collections_abc.py
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/_collections_abc.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/_collections_abc.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/_collections_abc.cpython-39.pyc'
import '_collections_abc' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc76a1b50>
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/posixpath.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/posixpath.abi3.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/posixpath.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/posixpath.py
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/posixpath.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/posixpath.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/posixpath.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/genericpath.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/genericpath.abi3.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/genericpath.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/genericpath.py
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/genericpath.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/genericpath.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/genericpath.cpython-39.pyc'
import 'genericpath' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc76341f0>
import 'posixpath' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc76a19d0>
import 'os' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc7697220>
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/_sitebuiltins.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/_sitebuiltins.abi3.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/_sitebuiltins.so
# trying /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/_sitebuiltins.py
# /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/_sitebuiltins.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/_sitebuiltins.py
# code object from '/home/linuxbrew/.linuxbrew/bin/../Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/_sitebuiltins.cpython-39.pyc'
import '_sitebuiltins' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc7697ac0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_bootlocale.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_bootlocale.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_bootlocale.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_bootlocale.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/_bootlocale.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_bootlocale.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/_bootlocale.cpython-39.pyc'
import '_locale' # 
import '_bootlocale' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc7634760>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sitecustomize.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sitecustomize.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sitecustomize.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sitecustomize.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/sitecustomize.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sitecustomize.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/sitecustomize.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/re.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/re.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/re.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/re.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/re.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/re.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/re.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/enum.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/enum.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/enum.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/enum.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/enum.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/enum.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/enum.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/types.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/types.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/types.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/types.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/types.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/types.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/types.cpython-39.pyc'
import 'types' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc765bc10>
import 'enum' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc7647190>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_compile.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_compile.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_compile.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_compile.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/sre_compile.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_compile.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/sre_compile.cpython-39.pyc'
import '_sre' # 
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_parse.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_parse.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_parse.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_parse.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/sre_parse.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_parse.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/sre_parse.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_constants.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_constants.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_constants.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_constants.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/sre_constants.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/sre_constants.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/sre_constants.cpython-39.pyc'
import 'sre_constants' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc75f69d0>
import 'sre_parse' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc7668fd0>
import 'sre_compile' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc7668760>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/functools.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/functools.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/functools.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/functools.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/functools.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/functools.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/functools.cpython-39.pyc'
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/collections/__pycache__/__init__.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/collections/__init__.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/collections/__pycache__/__init__.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/heapq.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/heapq.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/heapq.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/heapq.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/heapq.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/heapq.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/heapq.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_heapq.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_heapq.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_heapq.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_heapq.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_heapq.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_heapq.cpython-39-x86_64-linux-gnu.so
# extension module '_heapq' loaded from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_heapq.cpython-39-x86_64-linux-gnu.so'
# extension module '_heapq' executed from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_heapq.cpython-39-x86_64-linux-gnu.so'
import '_heapq' # <_frozen_importlib_external.ExtensionFileLoader object at 0x7fbfc75bc820>
import 'heapq' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc75bc280>
import 'itertools' # 
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/keyword.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/keyword.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/keyword.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/keyword.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/keyword.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/keyword.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/keyword.cpython-39.pyc'
import 'keyword' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc75bc8e0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/operator.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/operator.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/operator.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/operator.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/operator.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/operator.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/operator.cpython-39.pyc'
import '_operator' # 
import 'operator' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc75bc970>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/reprlib.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/reprlib.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/reprlib.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/reprlib.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/reprlib.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/reprlib.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/reprlib.cpython-39.pyc'
import 'reprlib' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc75bca30>
import '_collections' # 
import 'collections' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc76186d0>
import '_functools' # 
import 'functools' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc7607ee0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/copyreg.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/copyreg.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/copyreg.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/copyreg.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/copyreg.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/copyreg.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/copyreg.cpython-39.pyc'
import 'copyreg' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc760ec70>
import 're' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc7634a60>
import 'sitecustomize' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc7634d00>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/usercustomize.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/usercustomize.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/usercustomize.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/usercustomize.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/usercustomize.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/usercustomize.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/usercustomize.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/usercustomize.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/usercustomize.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/usercustomize.pyc
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/usercustomize.cpython-39-x86_64-linux-gnu.so
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/usercustomize.abi3.so
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/usercustomize.so
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/usercustomize.py
# /home/PanXuehai/.local/lib/python3.9/site-packages/__pycache__/usercustomize.cpython-39.pyc matches /home/PanXuehai/.local/lib/python3.9/site-packages/usercustomize.py
# code object from '/home/PanXuehai/.local/lib/python3.9/site-packages/__pycache__/usercustomize.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/rich.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/rich.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/rich.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/rich.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/rich.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/rich.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/rich.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/rich.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/rich.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/rich.pyc
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/rich.cpython-39-x86_64-linux-gnu.so
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/rich.abi3.so
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/rich.so
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/rich.py
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/rich.pyc
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/__init__.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__init__.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/__init__.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/typing.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/typing.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/typing.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/typing.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/typing.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/typing.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/typing.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/collections/abc.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/collections/abc.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/collections/abc.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/collections/abc.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/collections/__pycache__/abc.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/collections/abc.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/collections/__pycache__/abc.cpython-39.pyc'
import 'collections.abc' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc737d820>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/contextlib.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/contextlib.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/contextlib.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/contextlib.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/contextlib.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/contextlib.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/contextlib.cpython-39.pyc'
import 'contextlib' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc737d910>
import 'typing' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc7618b20>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_extension.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_extension.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_extension.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_extension.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/_extension.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_extension.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/_extension.cpython-39.pyc'
import 'rich._extension' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc75d4670>
import 'rich' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc7618f10>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/pretty.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/pretty.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/pretty.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/pretty.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/pretty.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/pretty.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/pretty.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/array.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/array.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/array.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/array.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/array.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/array.cpython-39-x86_64-linux-gnu.so
# extension module 'array' loaded from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/array.cpython-39-x86_64-linux-gnu.so'
# extension module 'array' executed from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/array.cpython-39-x86_64-linux-gnu.so'
import 'array' # <_frozen_importlib_external.ExtensionFileLoader object at 0x7fbfc734eaf0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/dataclasses.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/dataclasses.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/dataclasses.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/dataclasses.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/dataclasses.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/dataclasses.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/dataclasses.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/copy.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/copy.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/copy.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/copy.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/copy.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/copy.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/copy.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/weakref.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/weakref.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/weakref.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/weakref.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/weakref.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/weakref.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/weakref.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_weakrefset.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_weakrefset.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_weakrefset.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_weakrefset.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/_weakrefset.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_weakrefset.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/_weakrefset.cpython-39.pyc'
import '_weakrefset' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc70e23a0>
import 'weakref' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc7366130>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/org.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/org.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/org.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/org.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/org.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/org.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/org.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/org.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/org.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/org.pyc
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/org.cpython-39-x86_64-linux-gnu.so
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/org.abi3.so
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/org.so
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/org.py
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/org.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/org.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/org.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/org.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/org.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/org.pyc
import 'copy' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc735eca0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/inspect.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/inspect.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/inspect.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/inspect.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/inspect.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/inspect.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/inspect.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/ast.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/ast.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/ast.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/ast.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/ast.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/ast.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/ast.cpython-39.pyc'
import '_ast' # 
import 'ast' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc7109e50>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/dis.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/dis.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/dis.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/dis.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/dis.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/dis.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/dis.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/opcode.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/opcode.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/opcode.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/opcode.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/opcode.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/opcode.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/opcode.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_opcode.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_opcode.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_opcode.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_opcode.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_opcode.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_opcode.cpython-39-x86_64-linux-gnu.so
# extension module '_opcode' loaded from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_opcode.cpython-39-x86_64-linux-gnu.so'
# extension module '_opcode' executed from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_opcode.cpython-39-x86_64-linux-gnu.so'
import '_opcode' # <_frozen_importlib_external.ExtensionFileLoader object at 0x7fbfc70c5340>
import 'opcode' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc70b1fd0>
import 'dis' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc7098640>
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/importlib/__pycache__/__init__.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/importlib/__init__.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/importlib/__pycache__/__init__.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/warnings.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/warnings.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/warnings.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/warnings.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/warnings.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/warnings.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/warnings.cpython-39.pyc'
import 'warnings' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc70c5b20>
import 'importlib' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc70c5eb0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/importlib/machinery.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/importlib/machinery.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/importlib/machinery.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/importlib/machinery.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/importlib/__pycache__/machinery.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/importlib/machinery.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/importlib/__pycache__/machinery.cpython-39.pyc'
import 'importlib.machinery' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc70c5d00>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/linecache.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/linecache.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/linecache.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/linecache.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/linecache.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/linecache.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/linecache.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/tokenize.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/tokenize.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/tokenize.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/tokenize.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/tokenize.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/tokenize.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/tokenize.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/token.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/token.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/token.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/token.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/token.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/token.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/token.cpython-39.pyc'
import 'token' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6e0e9a0>
import 'tokenize' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6e0e130>
import 'linecache' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc70c5310>
import 'inspect' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc735eeb0>
import 'dataclasses' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc734ebb0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/attr.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/attr.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/attr.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/attr.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/attr.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/attr.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/attr.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/attr.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/attr.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/attr.pyc
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/attr.cpython-39-x86_64-linux-gnu.so
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/attr.abi3.so
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/attr.so
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/attr.py
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/attr.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/attr.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/attr.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/attr.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/attr.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/attr.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/highlighter.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/highlighter.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/highlighter.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/highlighter.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/highlighter.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/highlighter.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/highlighter.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/text.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/text.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/text.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/text.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/text.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/text.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/text.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/math.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/math.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/math.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/math.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/math.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/math.cpython-39-x86_64-linux-gnu.so
# extension module 'math' loaded from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/math.cpython-39-x86_64-linux-gnu.so'
# extension module 'math' executed from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/math.cpython-39-x86_64-linux-gnu.so'
import 'math' # <_frozen_importlib_external.ExtensionFileLoader object at 0x7fbfc6e3d9d0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_loop.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_loop.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_loop.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_loop.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/_loop.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_loop.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/_loop.cpython-39.pyc'
import 'rich._loop' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6e3da60>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_pick.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_pick.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_pick.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_pick.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/_pick.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_pick.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/_pick.cpython-39.pyc'
import 'rich._pick' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6e3ddc0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_wrap.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_wrap.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_wrap.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_wrap.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/_wrap.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_wrap.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/_wrap.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/cells.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/cells.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/cells.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/cells.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/cells.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/cells.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/cells.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_cell_widths.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_cell_widths.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_cell_widths.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_cell_widths.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/_cell_widths.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_cell_widths.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/_cell_widths.cpython-39.pyc'
import 'rich._cell_widths' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6e475e0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_lru_cache.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_lru_cache.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_lru_cache.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_lru_cache.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/_lru_cache.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_lru_cache.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/_lru_cache.cpython-39.pyc'
import 'rich._lru_cache' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6e476a0>
import 'rich.cells' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6e471f0>
import 'rich._wrap' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6e3df10>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/align.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/align.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/align.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/align.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/align.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/align.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/align.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/constrain.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/constrain.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/constrain.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/constrain.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/constrain.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/constrain.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/constrain.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/jupyter.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/jupyter.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/jupyter.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/jupyter.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/jupyter.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/jupyter.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/jupyter.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/segment.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/segment.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/segment.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/segment.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/segment.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/segment.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/segment.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/style.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/style.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/style.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/style.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/style.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/style.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/style.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/random.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/random.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/random.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/random.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/random.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/random.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/random.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/bisect.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/bisect.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/bisect.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/bisect.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/bisect.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/bisect.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/bisect.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_bisect.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_bisect.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_bisect.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_bisect.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_bisect.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_bisect.cpython-39-x86_64-linux-gnu.so
# extension module '_bisect' loaded from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_bisect.cpython-39-x86_64-linux-gnu.so'
# extension module '_bisect' executed from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_bisect.cpython-39-x86_64-linux-gnu.so'
import '_bisect' # <_frozen_importlib_external.ExtensionFileLoader object at 0x7fbfc6beaf40>
import 'bisect' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6bead00>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_random.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_random.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_random.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_random.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_random.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_random.cpython-39-x86_64-linux-gnu.so
# extension module '_random' loaded from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_random.cpython-39-x86_64-linux-gnu.so'
# extension module '_random' executed from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_random.cpython-39-x86_64-linux-gnu.so'
import '_random' # <_frozen_importlib_external.ExtensionFileLoader object at 0x7fbfc6beadc0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_sha512.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_sha512.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_sha512.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_sha512.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_sha512.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_sha512.cpython-39-x86_64-linux-gnu.so
# extension module '_sha512' loaded from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_sha512.cpython-39-x86_64-linux-gnu.so'
# extension module '_sha512' executed from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_sha512.cpython-39-x86_64-linux-gnu.so'
import '_sha512' # <_frozen_importlib_external.ExtensionFileLoader object at 0x7fbfc6beaf10>
import 'random' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6bea0d0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/errors.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/errors.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/errors.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/errors.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/errors.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/errors.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/errors.cpython-39.pyc'
import 'rich.errors' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6beafa0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/color.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/color.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/color.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/color.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/color.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/color.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/color.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/platform.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/platform.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/platform.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/platform.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/platform.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/platform.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/platform.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/subprocess.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/subprocess.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/subprocess.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/subprocess.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/subprocess.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/subprocess.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/subprocess.cpython-39.pyc'
import 'errno' # 
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/signal.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/signal.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/signal.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/signal.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/signal.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/signal.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/signal.cpython-39.pyc'
import 'signal' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6994d30>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/threading.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/threading.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/threading.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/threading.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/threading.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/threading.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/threading.cpython-39.pyc'
import 'threading' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc69ad100>
import 'pwd' # 
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/grp.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/grp.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/grp.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/grp.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/grp.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/grp.cpython-39-x86_64-linux-gnu.so
# extension module 'grp' loaded from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/grp.cpython-39-x86_64-linux-gnu.so'
# extension module 'grp' executed from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/grp.cpython-39-x86_64-linux-gnu.so'
import 'grp' # <_frozen_importlib_external.ExtensionFileLoader object at 0x7fbfc6522fd0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/msvcrt.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/msvcrt.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/msvcrt.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/msvcrt.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/msvcrt.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/msvcrt.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/msvcrt.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/msvcrt.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/msvcrt.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/msvcrt.pyc
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/msvcrt.cpython-39-x86_64-linux-gnu.so
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/msvcrt.abi3.so
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/msvcrt.so
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/msvcrt.py
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/msvcrt.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/msvcrt.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/msvcrt.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/msvcrt.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/msvcrt.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/msvcrt.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_posixsubprocess.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_posixsubprocess.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_posixsubprocess.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_posixsubprocess.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_posixsubprocess.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_posixsubprocess.cpython-39-x86_64-linux-gnu.so
# extension module '_posixsubprocess' loaded from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_posixsubprocess.cpython-39-x86_64-linux-gnu.so'
# extension module '_posixsubprocess' executed from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_posixsubprocess.cpython-39-x86_64-linux-gnu.so'
import '_posixsubprocess' # <_frozen_importlib_external.ExtensionFileLoader object at 0x7fbfc6522c70>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/select.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/select.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/select.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/select.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/select.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/select.cpython-39-x86_64-linux-gnu.so
# extension module 'select' loaded from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/select.cpython-39-x86_64-linux-gnu.so'
# extension module 'select' executed from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/select.cpython-39-x86_64-linux-gnu.so'
import 'select' # <_frozen_importlib_external.ExtensionFileLoader object at 0x7fbfc652d9a0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/selectors.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/selectors.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/selectors.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/selectors.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/selectors.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/selectors.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/selectors.cpython-39.pyc'
import 'selectors' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc652da60>
import 'subprocess' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc698cc10>
import 'platform' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6978c70>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/colorsys.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/colorsys.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/colorsys.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/colorsys.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/colorsys.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/colorsys.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/colorsys.cpython-39.pyc'
import 'colorsys' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6994b50>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_palettes.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_palettes.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_palettes.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_palettes.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/_palettes.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_palettes.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/_palettes.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/palette.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/palette.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/palette.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/palette.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/palette.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/palette.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/palette.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/color_triplet.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/color_triplet.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/color_triplet.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/color_triplet.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/color_triplet.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/color_triplet.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/color_triplet.cpython-39.pyc'
import 'rich.color_triplet' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6554610>
import 'rich.palette' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6541b50>
import 'rich._palettes' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc69945e0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/repr.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/repr.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/repr.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/repr.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/repr.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/repr.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/repr.cpython-39.pyc'
import 'rich.repr' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6554fa0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/terminal_theme.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/terminal_theme.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/terminal_theme.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/terminal_theme.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/terminal_theme.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/terminal_theme.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/terminal_theme.cpython-39.pyc'
import 'rich.terminal_theme' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6554a60>
import 'rich.color' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6978130>
import 'rich.style' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6bdd1c0>
import 'rich.segment' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6bd38b0>
import 'rich.jupyter' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6bd33a0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/measure.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/measure.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/measure.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/measure.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/measure.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/measure.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/measure.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/protocol.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/protocol.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/protocol.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/protocol.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/protocol.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/protocol.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/protocol.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/abc.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/abc.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/abc.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/abc.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/abc.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/abc.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/abc.cpython-39.pyc'
import 'rich.abc' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5ed71f0>
import 'rich.protocol' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5ed2ac0>
import 'rich.measure' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5ed2e80>
import 'rich.constrain' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6e47f40>
import 'rich.align' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6e47af0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/containers.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/containers.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/containers.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/containers.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/containers.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/containers.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/containers.cpython-39.pyc'
import 'rich.containers' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6bd31c0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/control.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/control.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/control.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/control.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/control.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/control.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/control.cpython-39.pyc'
import 'rich.control' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5ed7b20>
import 'rich.text' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6e303d0>
import 'rich.highlighter' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc6e25a60>
import 'rich.pretty' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc7344e80>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/traceback.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/traceback.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/traceback.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/traceback.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/traceback.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/traceback.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/traceback.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__future__.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__future__.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__future__.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__future__.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/__future__.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__future__.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/__future__.cpython-39.pyc'
import '__future__' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5ef9a30>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/traceback.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/traceback.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/traceback.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/traceback.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/traceback.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/traceback.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/traceback.cpython-39.pyc'
import 'traceback' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5ef58e0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/pygments.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/pygments.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/pygments.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/pygments.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/pygments.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/pygments.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/pygments.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/pygments.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/pygments.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/pygments.pyc
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/pygments.cpython-39-x86_64-linux-gnu.so
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/pygments.abi3.so
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/pygments.so
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/pygments.py
# trying /home/PanXuehai/.local/lib/python3.9/site-packages/pygments.pyc
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/__pycache__/__init__.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/__init__.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/__pycache__/__init__.cpython-39.pyc'
import 'pygments' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5ef5a00>
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/lexers/__pycache__/__init__.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/lexers/__init__.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/lexers/__pycache__/__init__.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/fnmatch.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/fnmatch.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/fnmatch.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/fnmatch.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/fnmatch.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/fnmatch.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/fnmatch.cpython-39.pyc'
import 'fnmatch' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5e8e5b0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/lexers/_mapping.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/lexers/_mapping.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/lexers/_mapping.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/lexers/_mapping.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/lexers/__pycache__/_mapping.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/lexers/_mapping.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/lexers/__pycache__/_mapping.cpython-39.pyc'
import 'pygments.lexers._mapping' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5e8e8e0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/modeline.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/modeline.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/modeline.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/modeline.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/__pycache__/modeline.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/modeline.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/__pycache__/modeline.cpython-39.pyc'
import 'pygments.modeline' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5e5c220>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/plugin.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/plugin.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/plugin.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/plugin.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/__pycache__/plugin.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/plugin.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/__pycache__/plugin.cpython-39.pyc'
import 'pygments.plugin' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5e5c910>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/util.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/util.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/util.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/util.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/__pycache__/util.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/util.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/__pycache__/util.cpython-39.pyc'
import 'pygments.util' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5e5c580>
import 'pygments.lexers' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5ef5fa0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/token.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/token.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/token.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/token.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/__pycache__/token.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/token.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/__pycache__/token.cpython-39.pyc'
import 'pygments.token' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5e8e3a0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/columns.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/columns.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/columns.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/columns.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/columns.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/columns.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/columns.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/console.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/console.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/console.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/console.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/console.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/console.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/console.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/shutil.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/shutil.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/shutil.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/shutil.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/shutil.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/shutil.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/shutil.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/zlib.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/zlib.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/zlib.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/zlib.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/zlib.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/zlib.cpython-39-x86_64-linux-gnu.so
# extension module 'zlib' loaded from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/zlib.cpython-39-x86_64-linux-gnu.so'
# extension module 'zlib' executed from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/zlib.cpython-39-x86_64-linux-gnu.so'
import 'zlib' # <_frozen_importlib_external.ExtensionFileLoader object at 0x7fbfc5e22b50>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/bz2.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/bz2.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/bz2.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/bz2.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/bz2.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/bz2.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/bz2.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_compression.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_compression.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_compression.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_compression.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/_compression.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_compression.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/_compression.cpython-39.pyc'
import '_compression' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5e364c0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_bz2.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_bz2.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_bz2.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_bz2.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_bz2.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_bz2.cpython-39-x86_64-linux-gnu.so
# extension module '_bz2' loaded from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_bz2.cpython-39-x86_64-linux-gnu.so'
# extension module '_bz2' executed from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_bz2.cpython-39-x86_64-linux-gnu.so'
import '_bz2' # <_frozen_importlib_external.ExtensionFileLoader object at 0x7fbfc5e36a00>
import 'bz2' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5e22c70>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lzma.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lzma.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lzma.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lzma.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/lzma.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lzma.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/lzma.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_lzma.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_lzma.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_lzma.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_lzma.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_lzma.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_lzma.cpython-39-x86_64-linux-gnu.so
# extension module '_lzma' loaded from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_lzma.cpython-39-x86_64-linux-gnu.so'
# extension module '_lzma' executed from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_lzma.cpython-39-x86_64-linux-gnu.so'
import '_lzma' # <_frozen_importlib_external.ExtensionFileLoader object at 0x7fbfc5e441c0>
import 'lzma' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5e369d0>
import 'shutil' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5e11c10>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/datetime.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/datetime.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/datetime.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/datetime.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/datetime.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/datetime.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/datetime.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_datetime.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_datetime.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_datetime.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_datetime.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_datetime.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_datetime.cpython-39-x86_64-linux-gnu.so
# extension module '_datetime' loaded from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_datetime.cpython-39-x86_64-linux-gnu.so'
# extension module '_datetime' executed from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_datetime.cpython-39-x86_64-linux-gnu.so'
import '_datetime' # <_frozen_importlib_external.ExtensionFileLoader object at 0x7fbfc5181a00>
import 'datetime' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5e11ca0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/getpass.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/getpass.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/getpass.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/getpass.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/getpass.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/getpass.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/getpass.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/termios.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/termios.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/termios.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/termios.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/termios.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/termios.cpython-39-x86_64-linux-gnu.so
# extension module 'termios' loaded from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/termios.cpython-39-x86_64-linux-gnu.so'
# extension module 'termios' executed from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/termios.cpython-39-x86_64-linux-gnu.so'
import 'termios' # <_frozen_importlib_external.ExtensionFileLoader object at 0x7fbfc5181d30>
import 'getpass' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5e11af0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/themes.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/themes.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/themes.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/themes.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/themes.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/themes.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/themes.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/default_styles.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/default_styles.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/default_styles.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/default_styles.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/default_styles.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/default_styles.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/default_styles.cpython-39.pyc'
import 'rich.default_styles' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5181e80>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/theme.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/theme.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/theme.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/theme.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/theme.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/theme.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/theme.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/configparser.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/configparser.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/configparser.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/configparser.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/configparser.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/configparser.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/configparser.cpython-39.pyc'
import 'configparser' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc51743d0>
import 'rich.theme' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5174850>
import 'rich.themes' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5e44b20>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_emoji_replace.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_emoji_replace.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_emoji_replace.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_emoji_replace.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/_emoji_replace.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_emoji_replace.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/_emoji_replace.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_emoji_codes.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_emoji_codes.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_emoji_codes.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_emoji_codes.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/_emoji_codes.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_emoji_codes.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/_emoji_codes.cpython-39.pyc'
import 'rich._emoji_codes' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc51741c0>
import 'rich._emoji_replace' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5174580>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_log_render.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_log_render.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_log_render.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_log_render.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/_log_render.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_log_render.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/_log_render.cpython-39.pyc'
import 'rich._log_render' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc516bfa0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/markup.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/markup.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/markup.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/markup.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/markup.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/markup.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/markup.cpython-39.pyc'
import 'rich.markup' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5e44f40>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/pager.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/pager.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/pager.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/pager.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/pager.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/pager.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/pager.cpython-39.pyc'
import 'rich.pager' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc519a640>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/region.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/region.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/region.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/region.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/region.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/region.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/region.cpython-39.pyc'
import 'rich.region' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc519a3a0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/scope.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/scope.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/scope.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/scope.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/scope.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/scope.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/scope.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/panel.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/panel.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/panel.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/panel.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/panel.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/panel.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/panel.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/box.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/box.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/box.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/box.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/box.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/box.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/box.cpython-39.pyc'
import 'rich.box' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc70641f0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/padding.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/padding.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/padding.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/padding.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/padding.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/padding.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/padding.cpython-39.pyc'
import 'rich.padding' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc7064ac0>
import 'rich.panel' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc519ab50>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/table.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/table.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/table.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/table.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/table.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/table.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/table.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_ratio.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_ratio.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_ratio.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_ratio.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/_ratio.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/_ratio.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/_ratio.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/fractions.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/fractions.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/fractions.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/fractions.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/fractions.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/fractions.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/fractions.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/decimal.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/decimal.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/decimal.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/decimal.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/decimal.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/decimal.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/decimal.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_decimal.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_decimal.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_decimal.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_decimal.py
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/_decimal.pyc
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_decimal.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/numbers.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/numbers.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/numbers.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/numbers.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/numbers.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/numbers.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/numbers.cpython-39.pyc'
import 'numbers' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc7091160>
# extension module '_decimal' loaded from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_decimal.cpython-39-x86_64-linux-gnu.so'
# extension module '_decimal' executed from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/lib-dynload/_decimal.cpython-39-x86_64-linux-gnu.so'
import '_decimal' # <_frozen_importlib_external.ExtensionFileLoader object at 0x7fbfc7084e50>
import 'decimal' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc7084be0>
import 'fractions' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc7075d90>
import 'rich._ratio' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc7075970>
import 'rich.table' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc7064cd0>
import 'rich.scope' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc519af70>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/screen.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/screen.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/screen.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/screen.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/screen.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/screen.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/screen.cpython-39.pyc'
import 'rich.screen' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc7064d30>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/styled.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/styled.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/styled.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/styled.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/styled.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/styled.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/styled.cpython-39.pyc'
import 'rich.styled' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc519adc0>
import 'rich.console' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5e803a0>
import 'rich.columns' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5e5cd90>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/syntax.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/syntax.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/syntax.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/syntax.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/syntax.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/syntax.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/rich/__pycache__/syntax.cpython-39.pyc'
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/textwrap.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/textwrap.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/textwrap.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/textwrap.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/textwrap.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/textwrap.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/__pycache__/textwrap.cpython-39.pyc'
import 'textwrap' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc479a2e0>
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/style.cpython-39-x86_64-linux-gnu.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/style.abi3.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/style.so
# trying /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/style.py
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/__pycache__/style.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/style.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/__pycache__/style.cpython-39.pyc'
import 'pygments.style' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc479cca0>
# /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/styles/__pycache__/__init__.cpython-39.pyc matches /home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/styles/__init__.py
# code object from '/home/linuxbrew/.linuxbrew/Cellar/python@3.9/3.9.6/lib/python3.9/site-packages/pygments/styles/__pycache__/__init__.cpython-39.pyc'
import 'pygments.styles' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc479c160>
import 'rich.syntax' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5e80b20>
import 'rich.traceback' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc5ef91f0>
import 'usercustomize' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc76475e0>
import 'site' # <_frozen_importlib_external.SourceFileLoader object at 0x7fbfc7702a30>
Python 3.9.6 (default, Jun 28 2021, 08:57:49) 
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
=== usercustomize test ===
╭───────────────────── Traceback (most recent call last) ──────────────────────╮
│ :1 in                                                         │
╰──────────────────────────────────────────────────────────────────────────────╯
ZeroDivisionError: division by zero
# clear builtins._
# clear sys.path
# clear sys.argv
# clear ...

Screenshot