(path)
| 745 | print(" %r," % (dir,)) |
| 746 | print("]") |
| 747 | def exists(path): |
| 748 | if path is not None and os.path.isdir(path): |
| 749 | return "exists" |
| 750 | else: |
| 751 | return "doesn't exist" |
| 752 | print(f"USER_BASE: {user_base!r} ({exists(user_base)})") |
| 753 | print(f"USER_SITE: {user_site!r} ({exists(user_site)})") |
| 754 | print(f"ENABLE_USER_SITE: {ENABLE_USER_SITE!r}") |
searching dependent graphs…