(path)
| 649 | print(" %r," % (dir,)) |
| 650 | print("]") |
| 651 | def exists(path): |
| 652 | if path is not None and os.path.isdir(path): |
| 653 | return "exists" |
| 654 | else: |
| 655 | return "doesn't exist" |
| 656 | print(f"USER_BASE: {user_base!r} ({exists(user_base)})") |
| 657 | print(f"USER_SITE: {user_site!r} ({exists(user_site)})") |
| 658 | print(f"ENABLE_USER_SITE: {ENABLE_USER_SITE!r}") |