Skip to content

Instantly share code, notes, and snippets.

@nylocx
Created September 29, 2021 11:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nylocx/6790853376d980fcd904fef5c57293e2 to your computer and use it in GitHub Desktop.
Save nylocx/6790853376d980fcd904fef5c57293e2 to your computer and use it in GitHub Desktop.
Cyclic imports test
from . import a, b
print("package initialized")
x = 42
print("a was run")
from . import a
print("b was run", a.x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment