Skip to content

Instantly share code, notes, and snippets.

@CloudCray
Created October 14, 2016 15:32
Show Gist options
  • Save CloudCray/03f90ac46f116a58f72269c9883b8e91 to your computer and use it in GitHub Desktop.
Save CloudCray/03f90ac46f116a58f72269c9883b8e91 to your computer and use it in GitHub Desktop.
Python 3.4+ Reimport
from foo.bar import baz
import importlib
import foo.bar
importlib.reload(foo.bar)
from foo.bar import baz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment